getBool method
Reads 1-byte
as a boolean
.
Implementation
bool getBool() {
final bool value = buffer.getBool(offset);
offset += ByteLength.u8;
return value;
}
Reads 1-byte
as a boolean
.
bool getBool() {
final bool value = buffer.getBool(offset);
offset += ByteLength.u8;
return value;
}