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