ApkManifest constructor

ApkManifest({
  1. String? applicationLabel,
  2. List<IntentFilter>? intentFilters,
  3. int? maxSdkVersion,
  4. List<Metadata>? metadata,
  5. int? minSdkVersion,
  6. String? packageName,
  7. List<Service>? services,
  8. int? targetSdkVersion,
  9. List<UsesFeature>? usesFeature,
  10. List<String>? usesPermission,
  11. String? versionCode,
  12. String? versionName,
})

Implementation

ApkManifest({
  this.applicationLabel,
  this.intentFilters,
  this.maxSdkVersion,
  this.metadata,
  this.minSdkVersion,
  this.packageName,
  this.services,
  this.targetSdkVersion,
  this.usesFeature,
  this.usesPermission,
  this.versionCode,
  this.versionName,
});