isMaximizable method

Future<bool> isMaximizable()

Returns bool - Whether the window can be manually maximized by the user.

@platforms macos,windows

Implementation

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