disableDebugLogs method
void
disableDebugLogs()
Implementation
void disableDebugLogs() {
try {
_channel.invokeMethod('disableDebugLogs');
} on PlatformException catch (e) {
log(e.message ?? "Error in disableDebugLogs");
}
}