getFloat32 method

double getFloat32(
  1. int offset, [
  2. Endian endian = Endian.little
])

Reads 4-bytes as a floating point value. The offset must satisfy the relations 0offsetoffset+4this.length.

Implementation

double getFloat32(final int offset, [final Endian endian = Endian.little]) {
  return asByteData().getFloat32(offset, endian);
}