requestPermissionPostNotifications static method

Future<bool> requestPermissionPostNotifications()

Only for Android - Request permission to post notifications, for Android 13 and higher

Implementation

static Future<bool> requestPermissionPostNotifications() async {
  return await _channel
      .invokeMethod(Method.PERSMISSION_REQUEST_POST_NOTIFICATION);
}