isMinimized method

Future<bool> isMinimized()

Returns bool - Whether the window is minimized.

Implementation

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