readUint8 method
Fetch a uint8 from the bytes list
Implementation
int readUint8() {
final start = ip;
ip += 1;
return bytes.buffer.asByteData().getUint8(start);
}
Fetch a uint8 from the bytes list
int readUint8() {
final start = ip;
ip += 1;
return bytes.buffer.asByteData().getUint8(start);
}