ASN1Set constructor

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

Create an ASN1Set entity with the given elements.

Implementation

ASN1Set({this.elements, int tag = ASN1Tags.SET}) : super(tag: tag);