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