RESET property
final
Indicates that the connection was reset.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_WEB_ERROR_STATUS_CONNECTION_RESET)
Implementation
static final RESET = WebResourceErrorType._internalMultiPlatform('RESET', () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 10;
default:
break;
}
return null;
});