REVOKED property

SslErrorType REVOKED
final

Indicates that the SSL certificate has been revoked.

Officially Supported Platforms/Implementations:

Implementation

static final REVOKED = SslErrorType._internalMultiPlatform('REVOKED', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.windows:
      return 4;
    default:
      break;
  }
  return null;
});