getFloat64 method

double getFloat64()

Reads 8-bytes as a double precision floating point value.

The offset must satisy the relations 0offsetoffset+8this.length.

Implementation

double getFloat64() {
  final double value = buffer.getFloat64(offset);
  offset += ByteLength.f64;
  return value;
}