cancelSchedulesByGroupKey method

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

Cancel all active schedules with the same group key, without dismiss the respective notifications on status bar

Implementation

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