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