BAD_URL property

WebResourceErrorType BAD_URL
final

A malformed URL prevented a URL request from being initiated.

Officially Supported Platforms/Implementations:

Implementation

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