runLogcat static method

Future<String?> runLogcat(
  1. String options
)

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