ApkManifest constructor

ApkManifest({
  1. String? applicationLabel,
  2. List<IntentFilter>? intentFilters,
  3. int? maxSdkVersion,
  4. int? minSdkVersion,
  5. String? packageName,
  6. int? targetSdkVersion,
  7. List<String>? usesPermission,
})

Implementation

ApkManifest({
  this.applicationLabel,
  this.intentFilters,
  this.maxSdkVersion,
  this.minSdkVersion,
  this.packageName,
  this.targetSdkVersion,
  this.usesPermission,
});