REDIRECT_TO_NON_EXISTENT_LOCATION property

WebResourceErrorType REDIRECT_TO_NON_EXISTENT_LOCATION
final

A redirect was specified by way of server response code, but the server didn’t accompany this code with a redirect URL.

Officially Supported Platforms/Implementations:

Implementation

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