canScheduleExactAlarms method

  1. @override
Future<bool> canScheduleExactAlarms()
override

Android 12+: whether the app may schedule exact alarms. Other platforms return true.

Implementation

@override
Future<bool> canScheduleExactAlarms() async {
  final result = await methodChannel.invokeMethod<bool>(
    'canScheduleExactAlarms',
  );
  return result ?? true;
}