ASN1BitString constructor

ASN1BitString({
  1. List<int>? stringValues,
  2. List<ASN1Object>? elements,
  3. int tag = ASN1Tags.BIT_STRING,
})

Create an ASN1BitString entity with the given stringValues.

Implementation

ASN1BitString(
    {this.stringValues, this.elements, int tag = ASN1Tags.BIT_STRING})
    : super(tag: tag);