AUTOMATIC property

WindowTitlebarSeparatorStyle AUTOMATIC
final

A style indicating that the system determines the type of separator.

Officially Supported Platforms/Implementations:

  • macOS WKWebView

Implementation

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