isWindowFullscreened static method

Future<bool> isWindowFullscreened()

Returns if the window is fullscreened.

Implementation

static Future<bool> isWindowFullscreened() async {
  await _completer.future;
  return await _windowManipulatorMethodChannel
      .invokeMethod('isWindowFullscreened');
}