UTILITY_PROCESS_EXITED property

ProcessFailedKind UTILITY_PROCESS_EXITED
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:

Implementation

static final UTILITY_PROCESS_EXITED =
    ProcessFailedKind._internalMultiPlatform('UTILITY_PROCESS_EXITED', () {
      switch (defaultTargetPlatform) {
        case TargetPlatform.windows:
          return 4;
        default:
          break;
      }
      return null;
    });