cancelSchedule method
Cancel a single scheduled notification, without dismiss the active notification
Implementation
@override
Future<void> cancelSchedule(int id) async {
_validateId(id);
await methodChannel.invokeMethod(CHANNEL_METHOD_CANCEL_SCHEDULE, id);
}