GPU_PROCESS_EXITED property

ProcessFailedKind GPU_PROCESS_EXITED
final

Indicates that the GPU process ended unexpectedly. The failed process is recreated automatically. Your application does not need to handle recovery for this event.

Officially Supported Platforms/Implementations:

Implementation

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