ASN1UTF8String constructor
ASN1UTF8String({
- String? utf8StringValue,
- List<
ASN1Object> ? elements, - 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);