WalRecord constructor

WalRecord({
  1. required WalOp op,
  2. required String table,
  3. required Map<String, dynamic> payload,
  4. required int lsn,
  5. required int txnId,
  6. required int checksum,
})

Implementation

WalRecord({
  required this.op,
  required this.table,
  required this.payload,
  required this.lsn,
  required this.txnId,
  required this.checksum,
});