AndroidPermissionDef constructor

const AndroidPermissionDef(
  1. String key, {
  2. AssociatedService? service,
  3. bool runtime = false,
  4. Set<String> keywords = const {},
  5. required String group,
  6. int? untilApi,
  7. int? sinceSDK,
  8. Map<String, int>? legacyKeys,
  9. Set<String>? docNotes,
})

Default constructor.

Implementation

const AndroidPermissionDef(
  super.key, {
  super.service,
  this.runtime = false,
  super.keywords = const {},
  required super.group,
  this.untilApi,
  this.sinceSDK,
  this.legacyKeys,
  super.docNotes,
}) : super(platform: 'android');