LAUNCH_FAILED property

ProcessFailedReason LAUNCH_FAILED
final

The process failed to launch.

Officially Supported Platforms/Implementations:

Implementation

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