getFloat64 method

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

Returns the floating point number represented by the eight bytes, in IEEE 754 double-precision binary floating-point format (binary64).

Implementation

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