PagedData<T, P> constructor

const PagedData<T, P>({
  1. P? nextPageId,
  2. List<T> data = const [],
})

Implementation

const PagedData({
  this.nextPageId,
  this.data = const[],
});