OptimisticEntry constructor

OptimisticEntry({
  1. required String tableName,
  2. required OptimisticChangeType type,
  3. required dynamic primaryKey,
  4. Map<String, dynamic>? oldRowJson,
  5. Map<String, dynamic>? newRowJson,
})

Implementation

OptimisticEntry({
  required this.tableName,
  required this.type,
  required this.primaryKey,
  this.oldRowJson,
  this.newRowJson,
});