SyncDto constructor

SyncDto({
  1. String? id,
  2. int? localId,
  3. required String table,
  4. SyncAction action = SyncAction.update,
})

Implementation

SyncDto({
  this.id,
  this.localId,
  required this.table,
  this.action = SyncAction.update,
});