putInt64 method

void putInt64 (int value)

Write an Int64 into the buffer.

Implementation

void putInt64(int value) {
  _eightBytes.setInt64(0, value, Endian.host);
  _buffer.addAll(_eightBytesAsList, 0, 8);
}