EntityDelta<T> constructor

const EntityDelta<T>({
  1. List<T> added = const [],
  2. List<T> removed = const [],
  3. List<(T, T)> moved = const [],
  4. List<(T, T)> updated = const [],
})

Implementation

const EntityDelta({
  this.added = const [],
  this.removed = const [],
  this.moved = const [],
  this.updated = const [],
});