dismissNotificationsByGroupKey method

  1. @override
Future<void> dismissNotificationsByGroupKey(
  1. String groupKey
)
override

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

Implementation

@override
Future<void> dismissNotificationsByGroupKey(String groupKey) async {
  await methodChannel.invokeMethod(
      CHANNEL_METHOD_DISMISS_NOTIFICATIONS_BY_GROUP_KEY, groupKey);
}