App constructor

App({
  1. String? packageName,
  2. String? appName,
  3. String? apkFilePath,
  4. String? versionName,
  5. int? versionCode,
  6. String? dataDir,
  7. bool? systemApp,
  8. int? installTimeMillis,
  9. int? updateTimeMillis,
  10. String? category,
  11. bool? enabled,
})

Implementation

App({
  this.packageName,
  this.appName,
  this.apkFilePath,
  this.versionName,
  this.versionCode,
  this.dataDir,
  this.systemApp,
  this.installTimeMillis,
  this.updateTimeMillis,
  this.category,
  this.enabled,
}) : super();