cancelNotification static method

Future<void> cancelNotification(
  1. String tag
)

Removes the delivered notification with the provided tag.

Implementation

static Future<void> cancelNotification(String tag) async {
  await platform.invokeMethod('cancelNotification', {'tag': tag});
}