ApkInfo constructor

ApkInfo({
  1. required String uuid,
  2. required File file,
  3. String? applicationId,
  4. String? versionCode,
  5. String? versionName,
  6. String? platformBuildVersionName,
  7. String? platformBuildVersionCode,
  8. String? compileSdkVersion,
  9. String? compileSdkVersionCodename,
  10. String? minSdkVersion,
  11. String? targetSdkVersion,
  12. String? applicationLabel,
  13. Map<String, String>? applicationLabels,
  14. List<String>? usesPermissions,
  15. List<String>? nativeCodes,
  16. List<String>? locales,
})

Implementation

ApkInfo({
  required this.uuid,
  required this.file,
  this.applicationId,
  this.versionCode,
  this.versionName,
  this.platformBuildVersionName,
  this.platformBuildVersionCode,
  this.compileSdkVersion,
  this.compileSdkVersionCodename,
  this.minSdkVersion,
  this.targetSdkVersion,
  this.applicationLabel,
  this.applicationLabels,
  this.usesPermissions,
  this.nativeCodes,
  this.locales,
});