readFloat64 method
Reads a float64 from the backing buffer
Implementation
double readFloat64() {
final res = _data.getFloat64(_offset);
_offset += float64Size;
return res;
}
Reads a float64 from the backing buffer
double readFloat64() {
final res = _data.getFloat64(_offset);
_offset += float64Size;
return res;
}