read8 method
Read U8 value from the buffer and shift cursor by 1.
Implementation
int read8() {
final value = _dataView.getUint8(_bytePosition);
shift(1);
return value;
}
Read U8 value from the buffer and shift cursor by 1.
int read8() {
final value = _dataView.getUint8(_bytePosition);
shift(1);
return value;
}