RESET property

WebResourceErrorType RESET
final

Indicates that the connection was reset.

Officially Supported Platforms/Implementations:

Implementation

static final RESET = WebResourceErrorType._internalMultiPlatform('RESET', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.windows:
      return 10;
    default:
      break;
  }
  return null;
});