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