ASN1OctetString constructor
ASN1OctetString({
- Uint8List? octets,
- List<
ASN1Object> ? elements, - 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);