isFullScreen method

Future<bool> isFullScreen()

Returns bool - Whether the window is in fullscreen mode.

Implementation

Future<bool> isFullScreen() async {
  return await _channel.invokeMethod('isFullScreen');
}