readUInt64 method
Reads a uint64 from the backing buffer
Implementation
int readUInt64() {
final res = _data.getUint64(_offset);
_offset += uint64Size;
return res;
}
Reads a uint64 from the backing buffer
int readUInt64() {
final res = _data.getUint64(_offset);
_offset += uint64Size;
return res;
}