orderOut static method

Future<void> orderOut()

Removes the window from the screen list, which hides the window.

Implementation

static Future<void> orderOut() async {
  await _completer.future;
  await _windowManipulatorMethodChannel.invokeMethod('orderOut');
}