isMaximizable method

Future<bool> isMaximizable()

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

Supported Platforms:

  • Windows
  • macOS

Implementation

Future<bool> isMaximizable() async {
  return await _invokeMethod('isMaximizable');
}