MINIATURIZABLE property

WindowStyleMask MINIATURIZABLE
final

The window displays a minimize button.

Officially Supported Platforms/Implementations:

Implementation

static final MINIATURIZABLE = WindowStyleMask._internalMultiPlatform(4, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.macOS:
      return 4;
    default:
      break;
  }
  return null;
});