putFloat64 method
Write an Float64 into the buffer.
Implementation
void putFloat64(double value) {
  _alignTo(8);
  _eightBytes.setFloat64(0, value, Endian.host);
  _buffer.addAll(_eightBytesAsList);
}Write an Float64 into the buffer.
void putFloat64(double value) {
  _alignTo(8);
  _eightBytes.setFloat64(0, value, Endian.host);
  _buffer.addAll(_eightBytesAsList);
}