bdSetInt64 function
Write a non-negative integer as a little-endian signed-64-bit value. For NebulaDB all int columns are non-negative, so this is identical to bdSetUint64 but named separately for clarity.
Implementation
void bdSetInt64(ByteData bd, int offset, int value) =>
bdSetUint64(bd, offset, value);