ASN1UTF8String.fromBytes constructor

ASN1UTF8String.fromBytes(
  1. Uint8List bytes
)

Create an ASN1UTF8String from an encoded list of bytes

Implementation

ASN1UTF8String.fromBytes(super.bytes) : super.fromBytes() {
  var octets = valueBytes();
  utf8StringValue = utf8.decode(octets);
}