setFloat64 method

void setFloat64(
  1. double value
)

Writes a double precision floating point value to 8-bytes.

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

Implementation

void setFloat64(final double value) {
  _increaseCapacity(ByteLength.f64);
  buffer.setFloat64(value, offset);
  offset += ByteLength.f64;
}