ASN1PrintableString constructor

ASN1PrintableString({
  1. String? stringValue,
  2. List<ASN1Object>? elements,
  3. 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);