CLOSABLE property
final
The window displays a close button.
Officially Supported Platforms/Implementations:
- macOS WKWebView (Official API - NSWindow.StyleMask.closable)
Implementation
static final CLOSABLE = WindowStyleMask._internalMultiPlatform(2, () {
switch (defaultTargetPlatform) {
case TargetPlatform.macOS:
return 2;
default:
break;
}
return null;
});