REVOKED property
final
Indicates that the SSL certificate has been revoked.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_REVOKED)
Implementation
static final REVOKED = SslErrorType._internalMultiPlatform('REVOKED', () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 4;
default:
break;
}
return null;
});