decodeValue method
Implementation
@override
bool decodeValue(Pipe x, CType t) {
checkType(t);
final k = Uint8List.fromList(safeRead<int>(x as Pipe<int>, 1)).toHex();
if (k == '00') {
return false;
} else if (k == '01') {
return true;
}
throw RangeError('Boolean value out of range.');
}