UTILITY_PROCESS_EXITED property
final
Indicates that a utility process ended unexpectedly. The failed process is recreated automatically. Your application does not need to handle recovery for this event.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_PROCESS_FAILED_KIND_UTILITY_PROCESS_EXITED)
Implementation
static final UTILITY_PROCESS_EXITED =
ProcessFailedKind._internalMultiPlatform('UTILITY_PROCESS_EXITED', () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 4;
default:
break;
}
return null;
});