callPhone constant

AndroidPermissionDef const callPhone

android.permission.CALL_PHONE

Required to initiate phone calls without user intervention. Runtime permission: true Group: phone Associated service: phone

Implementation

static const callPhone = AndroidPermissionDef(
  'android.permission.CALL_PHONE',
  runtime: true,
  group: 'phone',
  service: AssociatedService.phone,
  keywords: {'dial', 'call', 'outgoing'},
  docNotes: {'Required to initiate phone calls without user intervention'},
);