LAUNCH_FAILED property
final
The process failed to launch.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_PROCESS_FAILED_REASON_LAUNCH_FAILED)
Implementation
static final LAUNCH_FAILED = ProcessFailedReason._internalMultiPlatform(
'LAUNCH_FAILED',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 4;
default:
break;
}
return null;
},
);