PPAPI_BROKER property

BrowserProcessKind PPAPI_BROKER
final

Indicates the PPAPI plugin broker process kind.

Officially Supported Platforms/Implementations:

  • Windows WebView2

Implementation

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