encode method

void encode(
  1. ByteData bd, {
  2. int offset = 0,
})

Implementation

void encode(ByteData bd, {int offset = 0}) {
  bdSetUint64(bd, offset,      xmin);
  bdSetUint64(bd, offset +  8, xmax);
  bdSetUint64(bd, offset + 16, rowId);
  bd.setUint16(offset + 24, mvccFlags, Endian.little);
}