cancelNotificationsByGroupKey method

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

Cancel and dismiss all notifications and schedules with the same group key

Implementation

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