PPAPI_PLUGIN_PROCESS_EXITED property

ProcessFailedKind PPAPI_PLUGIN_PROCESS_EXITED
final

Indicates that a PPAPI plugin process ended unexpectedly. This failure is not fatal. Your application does not need to handle recovery for this event.

Officially Supported Platforms/Implementations:

Implementation

static final PPAPI_PLUGIN_PROCESS_EXITED =
    ProcessFailedKind._internalMultiPlatform(
      'PPAPI_PLUGIN_PROCESS_EXITED',
      () {
        switch (defaultTargetPlatform) {
          case TargetPlatform.windows:
            return 7;
          default:
            break;
        }
        return null;
      },
    );