ASN1PrintableString constructor
ASN1PrintableString({
- String? stringValue,
- List<
ASN1Object> ? elements, - int tag = ASN1Tags.PRINTABLE_STRING,
Create an ASN1PrintableString entity with the given stringValue
.
Implementation
ASN1PrintableString(
{this.stringValue, this.elements, int tag = ASN1Tags.PRINTABLE_STRING})
: super(tag: tag);