Pageable constructor

const Pageable({
  1. int page = 0,
  2. int size = 20,
  3. List<Sort>? sort,
})

Implementation

const Pageable({
  this.page = 0,
  this.size = 20,
  this.sort,
});