addAll method

AutoListReadyState<T> addAll(
  1. List<T> others, {
  2. int? page,
  3. int? total,
})

Implementation

AutoListReadyState<T> addAll(List<T> others, {int? page, int? total}) {
  return AutoListReadyState(items.add(others: others, page: page, total: total));
}