exitFullscreen static method

Future<void> exitFullscreen()

Restores the Flutter window back to normal from fullscreen mode.

Implementation

static Future<void> exitFullscreen() async {
  if (Platform.isMacOS) {
    WindowManipulator.exitFullscreen();

    return;
  }

  await _kChannel.invokeMethod(_kExitFullscreen);
}