OUT_OF_MEMORY property
final
The process terminated due to running out of memory.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_PROCESS_FAILED_REASON_OUT_OF_MEMORY)
Implementation
static final OUT_OF_MEMORY = ProcessFailedReason._internalMultiPlatform(
'OUT_OF_MEMORY',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 5;
default:
break;
}
return null;
},
);