putUint64 method
Writes a Uint64 to the tail of the buffer after preparing space for it.
Updates the offset pointer. This method is intended for use when writing structs to the buffer.
Implementation
void putUint64(int value) {
_prepare(_sizeofUint64, 1);
_setUint64AtTail(_tail, value);
}