ASN1TeletextString.fromBytes constructor

ASN1TeletextString.fromBytes(
  1. Uint8List bytes
)

Create an ASN1TeletextString from an encoded list of bytes

Implementation

ASN1TeletextString.fromBytes(super.bytes) : super.fromBytes() {
  var octets = valueBytes();
  stringValue = ascii.decode(octets);
}