UNRESPONSIVE property
final
The process became unresponsive. This only applies to the main frame's render process.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_PROCESS_FAILED_REASON_UNRESPONSIVE)
Implementation
static final UNRESPONSIVE = ProcessFailedReason._internalMultiPlatform(
'UNRESPONSIVE',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 1;
default:
break;
}
return null;
},
);