SANDBOX_HELPER property
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;
},
);