ASN1IA5String constructor
ASN1IA5String({
- String? stringValue,
- List<
ASN1Object> ? elements, - int tag = ASN1Tags.IA5_STRING,
Create an ASN1IA5String entity with the given stringValue
.
Implementation
ASN1IA5String(
{this.stringValue, this.elements, int tag = ASN1Tags.IA5_STRING})
: super(tag: tag);