enableDebugLogs method

Future<void> enableDebugLogs()

Implementation

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