requestScheduleExactAlarm method

Future<void> requestScheduleExactAlarm()

Requests permission to schedule exact alarms. This is typically used on Android to allow the app to schedule alarms that trigger at specific times.

Implementation

Future<void> requestScheduleExactAlarm() {
  throw UnimplementedError(
    'requestScheduleExactAlarm() has not been implemented.',
  );
}