TITLED property

WindowStyleMask TITLED
final

The window displays a title bar.

Officially Supported Platforms/Implementations:

Implementation

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