startMonitor static method

Future<bool?> startMonitor(
  1. String options
)

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;
}