getFloat32 method
Reads 4-bytes as a floating point value.
The offset must satisfy the relations 0 ≤ offset ≤ offset+4 ≤ this.length.
Implementation
double getFloat32(final int offset, [final Endian endian = Endian.little]) {
return asByteData().getFloat32(offset, endian);
}