USER_AUTHENTICATION_REQUIRED property

WebResourceErrorType USER_AUTHENTICATION_REQUIRED
final

Authentication is required to access a resource.

Officially Supported Platforms/Implementations:

Implementation

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