readUInt8 method
Implementation
int readUInt8() {
ByteData? data = read(1);
if(data == null){
throw 'no more data';
}
return data.getUint8(0);
}
int readUInt8() {
ByteData? data = read(1);
if(data == null){
throw 'no more data';
}
return data.getUint8(0);
}