decode static method
Implementation
static MvccTupleHeader decode(Uint8List data, {int offset = 0}) {
final bd = ByteData.sublistView(data);
return MvccTupleHeader(
xmin: bdGetUint64(bd, offset),
xmax: bdGetUint64(bd, offset + 8),
rowId: bdGetUint64(bd, offset + 16),
mvccFlags: bd.getUint16(offset + 24, Endian.little),
);
}