ASN1IA5String.fromBytes constructor

ASN1IA5String.fromBytes(
  1. Uint8List bytes
)

Create an ASN1IA5String from an encoded list of bytes

Implementation

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