isMinimizable method

Future<bool> isMinimizable()

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

Supported Platforms:

  • Windows
  • macOS

Implementation

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