SHADOW property

WindowTitlebarSeparatorStyle SHADOW
final

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

Officially Supported Platforms/Implementations:

  • macOS WKWebView

Implementation

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