writeByte method
Writes a byte to the byte stream.
Implementation
void writeByte(int value) {
_validateBuffer(1);
_getData().setInt8(_position++, value);
}
Writes a byte to the byte stream.
void writeByte(int value) {
_validateBuffer(1);
_getData().setInt8(_position++, value);
}