startMonitor static method
Runs a logcat command and starts monitoring it through the event stream.
Implementation
static Future<bool?> startMonitor(String options) async {
bool? result = await _channel
.invokeMethod('startMonitor', <String, String>{'options': options});
return result;
}