AppStoreVersionAttributes constructor Null safety

const AppStoreVersionAttributes(
  1. {String? platform,
  2. String? versionString,
  3. String? appStoreState,
  4. String? copyright,
  5. AppStoreVersionReleaseType? releaseType,
  6. DateTime? earliestReleaseDate,
  7. bool? downloadable,
  8. DateTime? createdDate}
)

The attributes of a version of an app in the App Store Connect API.

Implementation

const AppStoreVersionAttributes({
  this.platform,
  this.versionString,
  this.appStoreState,
  this.copyright,
  this.releaseType,
  this.earliestReleaseDate,
  this.downloadable,
  this.createdDate,
});