AppUpgradeInfo constructor

AppUpgradeInfo({
  1. required String title,
  2. required List<String> contents,
  3. String? apkDownloadUrl,
  4. bool force = false,
})

Implementation

AppUpgradeInfo({
  required this.title,
  required this.contents,
  this.apkDownloadUrl,
  this.force = false,
});