CANCELLED property

WebResourceErrorType CANCELLED
final

An asynchronous load has been canceled.

Officially Supported Platforms/Implementations:

Implementation

static final CANCELLED =
    WebResourceErrorType._internalMultiPlatform('CANCELLED', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.iOS:
      return -999;
    case TargetPlatform.macOS:
      return -999;
    default:
      break;
  }
  return null;
});