cancelSchedulesByChannelKey method
Cancel all active schedules with the same channel key, without dismiss the respective notifications on status bar
Implementation
@override
Future<void> cancelSchedulesByChannelKey(String channelKey) async {
await methodChannel.invokeMethod(
CHANNEL_METHOD_CANCEL_SCHEDULES_BY_CHANNEL_KEY, channelKey);
}