ASN1IA5String constructor

ASN1IA5String({
  1. String? stringValue,
  2. List<ASN1Object>? elements,
  3. 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);