ListWrapper<T> constructor

ListWrapper<T>({
  1. required int total,
  2. required int page,
  3. required bool hasNext,
  4. required List<T> dataList,
})

Implementation

ListWrapper({
  required this.total,
  required this.page,
  required this.hasNext,
  required this.dataList,
});