readFloat32 method
Reads a float32 from the backing buffer
Implementation
double readFloat32() {
final res = _data.getFloat32(_offset);
_offset += float32Size;
return res;
}
Reads a float32 from the backing buffer
double readFloat32() {
final res = _data.getFloat32(_offset);
_offset += float32Size;
return res;
}