ASN1Sequence.decode constructor

ASN1Sequence.decode(
  1. dynamic bytes
)

Implementation

factory ASN1Sequence.decode(/* Iterable<int> | String */ bytes) => parse(
    MutableIterable(bytes is Iterable<int> ? bytes : base64Decode(bytes)));