postNotifications constant

AndroidPermissionDef const postNotifications

android.permission.POST_NOTIFICATIONS

Required to post notifications to the user on Android 13 and above. Runtime permission: true Since SDK: 33 Group: notifications

Implementation

static const postNotifications = AndroidPermissionDef(
  'android.permission.POST_NOTIFICATIONS',
  sinceSDK: 33,
  runtime: true,
  group: 'notifications',
  keywords: {'push', 'post'},
  docNotes: {
    'Required to post notifications to the user on Android 13 and above',
  },
);