SANDBOX_HELPER_PROCESS_EXITED property
final
Indicates that a sandbox helper process ended unexpectedly. This failure is not fatal. Your application does not need to handle recovery for this event.
Officially Supported Platforms/Implementations:
Implementation
static final SANDBOX_HELPER_PROCESS_EXITED =
ProcessFailedKind._internalMultiPlatform(
'SANDBOX_HELPER_PROCESS_EXITED',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 5;
default:
break;
}
return null;
},
);