getLogcatDump property

Future<String?> get getLogcatDump

Runs a logcat log dump command and returns the result.

Implementation

static Future<String?> get getLogcatDump async {
  final String? result = await _channel
      .invokeMethod('runLogcat', <String, String>{'options': "-d"});
  return result;
}