ASN1TeletextString constructor

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