readFloat64 method

double readFloat64()

Reads a float64 from the backing buffer

Implementation

double readFloat64() {
  final res = _data.getFloat64(_offset);
  _offset += float64Size;
  return res;
}