FULLSCREEN property

WindowStyleMask FULLSCREEN
final

The window can appear full screen. A fullscreen window does not draw its title bar, and may have special handling for its toolbar.

Officially Supported Platforms/Implementations:

Implementation

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