CertificateRevocationList.fromDer constructor

CertificateRevocationList.fromDer(
  1. Uint8List der
)

Creates a Certificate Revocation List from DER encoded bytes.

Implementation

factory CertificateRevocationList.fromDer(Uint8List der) =>
    CertificateRevocationList(
      ASN1Parser(der).nextObject() as ASN1Sequence,
    );