AppStoreConnectImageAsset constructor Null safety

const AppStoreConnectImageAsset(
  1. {int? height,
  2. int? width,
  3. String? templateUrl}
)

An image asset, including its height, width, and template URL.

Implementation

const AppStoreConnectImageAsset({
  this.height,
  this.width,
  this.templateUrl,
});