ASN1Boolean.fromBytes constructor

ASN1Boolean.fromBytes(
  1. Uint8List bytes
)

Implementation

ASN1Boolean.fromBytes(Uint8List bytes) : super.fromBytes(bytes) {
  var b = bytes[_valueStartPosition];
  booleanValue = (b == BOOLEAN_TRUE_VALUE);
}