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