stopMonitor static method

Future<bool?> stopMonitor()

Interrupt the logcat command and stop monitoring it through the event stream.

Implementation

static Future<bool?> stopMonitor() async {
  bool? result = await _channel.invokeMethod('stopMonitor');
  return result;
}