cancelScheduledBlock method
Implementation
@override
Future<bool?> cancelScheduledBlock(String scheduleId) async {
final bool? result = await methodChannel
.invokeMethod<bool>(MethodName.cancelScheduledBlock, {
Argument.scheduleId: scheduleId,
});
return result;
}