disableDebugLogs method
Implementation
Future<void> disableDebugLogs() async {
try {
Logger.debug = false;
_channel.invokeMethod('disableDebugLogs');
} on Exception catch (e) {
Logger.i("$e Error in disableDebugLogs");
}
}
Future<void> disableDebugLogs() async {
try {
Logger.debug = false;
_channel.invokeMethod('disableDebugLogs');
} on Exception catch (e) {
Logger.i("$e Error in disableDebugLogs");
}
}