cancelNotification static method

Future<bool> cancelNotification(
  1. String tag
)

Removes the delivered notification with the provided tag.

Implementation

static Future<bool> cancelNotification(String tag) async {
  return await _platform.invokeMethod('cancelNotification', {'tag': tag});
}