ASN1Boolean constructor

ASN1Boolean(
  1. bool? boolValue, {
  2. int tag = ASN1Tags.BOOLEAN,
})

Creates an ASN1Boolean entity with the given boolValue.

Implementation

ASN1Boolean(this.boolValue, {int tag = ASN1Tags.BOOLEAN}) : super(tag: tag);