LINE property

WindowTitlebarSeparatorStyle LINE
final

A style indicating that there’s no title bar separator.

Officially Supported Platforms/Implementations:

  • macOS WKWebView

Implementation

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