UNRESPONSIVE property

ProcessFailedReason UNRESPONSIVE
final

The process became unresponsive. This only applies to the main frame's render process.

Officially Supported Platforms/Implementations:

Implementation

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