PermissionStatusReport constructor

const PermissionStatusReport({
  1. required bool camera,
  2. required bool microphone,
  3. required bool location,
  4. required bool storage,
  5. required bool contacts,
})

Implementation

const PermissionStatusReport({
  required this.camera,
  required this.microphone,
  required this.location,
  required this.storage,
  required this.contacts,
});