Runs a logcat clear command and returns the result.
static Future<String?> get clearLogcat async { final String? result = await _channel .invokeMethod('runLogcat', <String, String>{'options': "-c"}); return result; }