cancelNotificationsWithTag static method

Future<void> cancelNotificationsWithTag(
  1. String tag
)

Cancels all notification messages with the specified tag.

Implementation

static Future<void> cancelNotificationsWithTag(String tag) async {
  await _methodChannel.invokeMethod(
    'cancelNotificationsWithTag',
    tag,
  );
}