AppUpgradeInfo constructor

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

Implementation

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