putInt64 method
Write an Int64 into the buffer.
Implementation
void putInt64(int value) {
_eightBytes.setInt64(0, value, Endian.host);
_buffer.addAll(_eightBytesAsList, 0, 8);
}
Write an Int64 into the buffer.
void putInt64(int value) {
_eightBytes.setInt64(0, value, Endian.host);
_buffer.addAll(_eightBytesAsList, 0, 8);
}