NONE property

WindowTitlebarSeparatorStyle NONE
final

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

Officially Supported Platforms/Implementations:

  • macOS WKWebView

Implementation

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