getFloat64 method

dynamic getFloat64()

Implementation

getFloat64() {
  var value = this.dv.buffer.asByteData().getFloat64(
      this.offset, this.littleEndian ? Endian.little : Endian.big);
  this.offset += 8;
  return value;
}