HOST_LOOKUP property

WebResourceErrorType HOST_LOOKUP
final

Server or proxy hostname lookup failed.

Officially Supported Platforms/Implementations:

Implementation

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