AppUpgradeInfo constructor

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

Implementation

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