orderFront static method

Future<void> orderFront()

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

Implementation

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