canScheduleExactAlarms method
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;
}