getFloat64 method

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

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

Implementation

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