PagingData<T> constructor

const PagingData<T>(
  1. int current,
  2. int limit,
  3. Iterable<T>? values,
  4. AsyncValue<Iterable<T>> lastValues,
  5. Object _token,
)

Implementation

const PagingData(
  this.current,
  this.limit,
  this.values,
  this.lastValues,
  this._token,
);