getFloat32 method

double getFloat32([
  1. Endian endian = Endian.little
])

Returns the floating point number represented by the four bytes, in IEEE 754 single-precision binary floating-point format (binary32).

Implementation

double getFloat32([Endian endian = Endian.little]) {
  final result = buffer.getFloat32(offset, endian);
  offset += 4;
  return result;
}