copyWith abstract method

DataCollectionState<T> copyWith({
  1. Iterable<T>? originalData,
  2. Iterable<T>? data,
  3. Map<String, FilterAction<T>>? filters,
  4. Map<String, MatchAction<T>>? matchers,
  5. SortAction<T>? sort,
})

Implementation

DataCollectionState<T> copyWith({
  Iterable<T>? originalData,
  Iterable<T>? data,
  Map<String, FilterAction<T>>? filters,
  Map<String, MatchAction<T>>? matchers,
  SortAction<T>? sort,
});