cancel method

Future<void> cancel(
  1. int id
)

Cancel/remove the notification with the specified id.

This applies to notifications that have been scheduled and those that have already been presented.

Implementation

Future<void> cancel(int id) async {
  throw UnimplementedError('cancel() has not been implemented');
}