enableDebugLogs method

void enableDebugLogs()

Implementation

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