pressRecents static method

Future<bool> pressRecents()

Implementation

static Future<bool> pressRecents() async {
  try {
    final result = await _channel.invokeMethod('pressRecents');
    return result as bool;
  } catch (e) {
    return false;
  }
}