clearLogcat property

Future<String?> get clearLogcat

Runs a logcat clear command and returns the result.

Implementation

static Future<String?> get clearLogcat async {
  final String? result = await _channel
      .invokeMethod('runLogcat', <String, String>{'options': "-c"});
  return result;
}