enableDebugLogs method

void enableDebugLogs()

Implementation

void enableDebugLogs() {
  try {
    Logger.debug = true;
    _channel.invokeMethod('enableDebugLogs');
  } on Exception catch (e) {
    Logger.i("$e Error in enableDebugLogs");
  }
}