Runs a logcat log dump command and returns the result.
static Future<String?> get getLogcatDump async { final String? result = await _channel .invokeMethod('runLogcat', <String, String>{'options': "-d"}); return result; }