orderBack static method

Future<void> orderBack()

Moves the window to the back of its level in the screen list, without changing either the key window or the main window.

Implementation

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