DATA_NOT_ALLOWED property

WebResourceErrorType DATA_NOT_ALLOWED
final

The cellular network disallowed a connection.

Officially Supported Platforms/Implementations:

Implementation

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