ASN1Boolean constructor

ASN1Boolean(
  1. bool booleanValue, {
  2. int tag = BOOLEAN_TYPE,
})

Implementation

ASN1Boolean(this.booleanValue, {super.tag = BOOLEAN_TYPE}) {
  _valueByteLength = 1;
}