blockControl method
A method to temporarily block control transmissions to a previously set internet address on the platform.
Implementation
@override
Future<void> blockControl(Enum control) async {
await methodChannel.invokeMethod(
'block_control',
<String, dynamic>{
'control': control.name,
},
);
}