prependAll method

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

Implementation

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