PagingResponse<T> constructor

PagingResponse<T>({
  1. int total = 0,
  2. required List<T> data,
})

Implementation

PagingResponse({
  this.total = 0,
  required this.data,
});