setFloat64 method

void setFloat64(
  1. double value,
  2. int offset, [
  3. Endian endian = Endian.little
])

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

Implementation

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