exitFullscreen static method

Future<void> exitFullscreen()

Restores the Flutter window back to normal from fullscreen mode.

Implementation

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