ASN1UTF8String constructor

ASN1UTF8String({
  1. String? utf8StringValue,
  2. List<ASN1Object>? elements,
  3. int tag = ASN1Tags.UTF8_STRING,
})

Creates an empty ASN1UTF8String entity with only the tag set.

Implementation

ASN1UTF8String(
    {this.utf8StringValue, this.elements, int tag = ASN1Tags.UTF8_STRING})
    : super(tag: tag);