putInt64 method

void putInt64(
  1. int value
)

Writes a Int64 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 putInt64(int value) {
  _prepare(_sizeofInt64, 1);
  _setInt64AtTail(_tail, value);
}