BROWSER property
final
Indicates the browser process kind.
Officially Supported Platforms/Implementations:
- Windows WebView2
Implementation
static final BROWSER = BrowserProcessKind._internalMultiPlatform(0, () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 0;
default:
break;
}
return null;
});