canScheduleExactNotifications static method

Future<bool?> canScheduleExactNotifications()

Implementation

static Future<bool?> canScheduleExactNotifications() async {
  final status = FlutterLocalNotificationsPlugin()
      .resolvePlatformSpecificImplementation<
          AndroidFlutterLocalNotificationsPlugin>()
      ?.canScheduleExactNotifications();
  return status;
}