SANDBOX_HELPER property

BrowserProcessKind SANDBOX_HELPER
final

Indicates the sandbox helper process kind.

Officially Supported Platforms/Implementations:

  • Windows WebView2

Implementation

static final SANDBOX_HELPER = BrowserProcessKind._internalMultiPlatform(
  3,
  () {
    switch (defaultTargetPlatform) {
      case TargetPlatform.windows:
        return 3;
      default:
        break;
    }
    return null;
  },
);