ASN1Sequence constructor

ASN1Sequence({
  1. List<ASN1Object>? elements,
  2. int tag = ASN1Tags.SEQUENCE,
})

Create an ASN1Sequence entity with the given elements.

Implementation

ASN1Sequence({this.elements, int tag = ASN1Tags.SEQUENCE}) : super(tag: tag);