readFloat32 method

double readFloat32()

Reads a float32 from the backing buffer

Implementation

double readFloat32() {
  final res = _data.getFloat32(_offset);
  _offset += float32Size;
  return res;
}