NETWORK_CONNECTION_LOST property

WebResourceErrorType NETWORK_CONNECTION_LOST
final

A client or server connection was severed in the middle of an in-progress load.

Officially Supported Platforms/Implementations:

Implementation

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