NONE property

A style indicating that the title bar separator is a line.

Officially Supported Platforms/Implementations:

  • MacOS

Implementation

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