dismissNotificationsByChannelKey method

  1. @override
Future<void> dismissNotificationsByChannelKey(
  1. String channelKey
)
override

Dismiss all active notifications with the same channel key on status bar, without cancel the active respective schedules

Implementation

@override
Future<void> dismissNotificationsByChannelKey(String channelKey) async {
  await methodChannel.invokeMethod(
      CHANNEL_METHOD_DISMISS_NOTIFICATIONS_BY_CHANNEL_KEY, channelKey);
}