SearchResult constructor

const SearchResult({
  1. int? page,
  2. int? pageSize,
  3. int? count,
  4. int? skip,
  5. List<Product>? products,
})

Implementation

const SearchResult({
  this.page,
  this.pageSize,
  this.count,
  this.skip,
  this.products,
});