Validity.fromAsn1 constructor

Validity.fromAsn1(
  1. ASN1Sequence sequence
)

Implementation

factory Validity.fromAsn1(ASN1Sequence sequence) => Validity(
      notBefore: toDart(sequence.elements[0]),
      notAfter: toDart(sequence.elements[1]),
    );