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