CrudEntry constructor

CrudEntry(
  1. int clientId,
  2. UpdateType op,
  3. String table,
  4. String id,
  5. int? transactionId,
  6. Map<String, dynamic>? opData, {
  7. Map<String, dynamic>? previousValues,
  8. String? metadata,
})

Implementation

CrudEntry(
  this.clientId,
  this.op,
  this.table,
  this.id,
  this.transactionId,
  this.opData, {
  this.previousValues,
  this.metadata,
});