CRASHED property

ProcessFailedReason CRASHED
final

The process crashed.

Officially Supported Platforms/Implementations:

Implementation

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