FRAME_RENDER_PROCESS_EXITED property

ProcessFailedKind FRAME_RENDER_PROCESS_EXITED
final

Indicates that a frame-only render process ended unexpectedly. The process exit does not affect the top-level document, only a subset of the subframes within it. The content in these frames is replaced with an error page in the frame.

Officially Supported Platforms/Implementations:

Implementation

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