BrowsePagination constructor

const BrowsePagination({
  1. int? page,
  2. int? nbHits,
  3. int? nbPages,
  4. int? hitsPerPage,
})

Returns a new BrowsePagination instance.

Implementation

const BrowsePagination({
  this.page,
  this.nbHits,
  this.nbPages,
  this.hitsPerPage,
});