VersionSentryInfo constructor

VersionSentryInfo({
  1. required String platform,
  2. required String currentVersion,
  3. required String storeVersion,
  4. required bool needsUpdate,
  5. required bool isMajorUpdate,
  6. required bool isMinorUpdate,
  7. required bool isPatchUpdate,
  8. String? releaseNotes,
  9. required String packageName,
  10. required String appStoreLink,
})

Implementation

VersionSentryInfo({
  required this.platform,
  required this.currentVersion,
  required this.storeVersion,
  required this.needsUpdate,
  required this.isMajorUpdate,
  required this.isMinorUpdate,
  required this.isPatchUpdate,
  this.releaseNotes,
  required this.packageName,
  required this.appStoreLink,
});