pressRecentApps method
Presses the recent apps button.
See also:
- developer.android.com/reference/androidx/test/uiautomator/UiDevice#pressrecentapps, which is used on Android
Implementation
Future<void> pressRecentApps() {
return platform.action.mobile(
android: platform.android.pressRecentApps,
ios: platform.ios.pressRecentApps,
);
}