runLogcat static method
Runs a logcat command with options and returns the result.
use -d option to "Dump the log and then exit (don't block)."
Implementation
static Future<String?> runLogcat(String options) async {
final String? result = await _channel
.invokeMethod('runLogcat', <String, String>{'options': options});
return result;
}