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