TimestampResponse.fromDer constructor

TimestampResponse.fromDer(
  1. Uint8List der
)

Creates a Timestamp from DER encoded bytes.

Implementation

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