ASN1OctetString constructor

ASN1OctetString({
  1. Uint8List? octets,
  2. List<ASN1Object>? elements,
  3. int tag = ASN1Tags.OCTET_STRING,
})

Create an ASN1OctetString entity with the given octets.

Implementation

ASN1OctetString({this.octets, this.elements, int tag = ASN1Tags.OCTET_STRING})
    : super(tag: tag);