canScheduleExactAlarms method

Future<bool> canScheduleExactAlarms()

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

Implementation

Future<bool> canScheduleExactAlarms() {
  return Future.value(true);
}