copyWith method
Implementation
EntityDelta<T> copyWith({
List<T>? added,
List<T>? removed,
List<(T, T)>? moved,
List<(T, T)>? updated,
}) {
return EntityDelta<T>(
added: added ?? this.added,
removed: removed ?? this.removed,
moved: moved ?? this.moved,
updated: updated ?? this.updated,
);
}