VersionCheckResponse constructor

VersionCheckResponse({
  1. required bool hasUpdate,
  2. required bool isForceUpdate,
  3. String? title,
  4. String? versionCode,
  5. int? buildNumber,
  6. String? platform,
  7. String? releaseNotes,
  8. Map<String, dynamic>? uiConfig,
  9. int? rolloutPercentage,
  10. bool? isInRollout,
  11. String? storeUrl,
  12. String? appStoreLink,
})

Implementation

VersionCheckResponse({
  required this.hasUpdate,
  required this.isForceUpdate,
  this.title,
  this.versionCode,
  this.buildNumber,
  this.platform,
  this.releaseNotes,
  this.uiConfig,
  this.rolloutPercentage,
  this.isInRollout,
  this.storeUrl,
  this.appStoreLink,
});