cancelScheduledNotification method

Future<bool> cancelScheduledNotification(
  1. int id
)

Cancel a previously scheduled notification by its id.

Implementation

Future<bool> cancelScheduledNotification(int id) {
  throw UnimplementedError(
    'cancelScheduledNotification() has not been implemented.',
  );
}