enterFullscreen static method

Future<void> enterFullscreen()

Makes the Flutter window fullscreen.

Implementation

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