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