FRAME_RENDER_PROCESS_EXITED property
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:
- Windows WebView2 (Official API - COREWEBVIEW2_PROCESS_FAILED_KIND_FRAME_RENDER_PROCESS_EXITED)
Implementation
static final FRAME_RENDER_PROCESS_EXITED =
ProcessFailedKind._internalMultiPlatform(
'FRAME_RENDER_PROCESS_EXITED',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 3;
default:
break;
}
return null;
},
);