DOC_MODAL_WINDOW property

WindowStyleMask DOC_MODAL_WINDOW
final

The window is a document-modal panel.

Officially Supported Platforms/Implementations:

Implementation

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