ASN1BMPString constructor

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