RENDER_PROCESS_EXITED property

ProcessFailedKind RENDER_PROCESS_EXITED
final

Indicates that the main frame's render process ended unexpectedly. Any subframes in the WebView will be gone too. A new render process is created automatically and navigated to an error page. You can use the reload method to try to recover from this failure. Alternatively, you can close and recreate the WebView.

Officially Supported Platforms/Implementations:

Implementation

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