WalBinRecord constructor

const WalBinRecord({
  1. required int lsn,
  2. required int txnId,
  3. required int prevLsn,
  4. required WalBinOp op,
  5. required int flags,
  6. required int tableId,
  7. required int rowId,
  8. Uint8List? beforeImage,
  9. Uint8List? afterImage,
  10. Map<String, dynamic>? ddlPayload,
})

Implementation

const WalBinRecord({
  required this.lsn,
  required this.txnId,
  required this.prevLsn,
  required this.op,
  required this.flags,
  required this.tableId,
  required this.rowId,
  this.beforeImage,
  this.afterImage,
  this.ddlPayload,
});