PageResult<T> constructor

PageResult<T>({
  1. required bool hasMore,
  2. required List<T> newList,
})

Implementation

PageResult({required this.hasMore, required this.newList});