disableDebugLogs method

Future<void> disableDebugLogs()

Implementation

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