writeBoolean method
Writes a Boolean value.
Implementation
void writeBoolean(bool value) {
if (value) {
this[_position++] = 1;
} else {
this[_position++] = 0;
}
}
Writes a Boolean value.
void writeBoolean(bool value) {
if (value) {
this[_position++] = 1;
} else {
this[_position++] = 0;
}
}