isWindowZoomed static method

Future<bool> isWindowZoomed()

Returns if the window is zoomed.

Implementation

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