ASN1BitString constructor
ASN1BitString({
- List<
int> ? stringValues, - List<
ASN1Object> ? elements, - 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);