VersionInfo constructor

VersionInfo({
  1. required String currentVersion,
  2. required String storeVersion,
  3. String? appStoreLink,
  4. String? playStoreLink,
  5. required bool shouldUpdate,
})

Implementation

VersionInfo({
  required this.currentVersion,
  required this.storeVersion,
  this.appStoreLink,
  this.playStoreLink,
  required this.shouldUpdate,
});