ProductSearchResponseResponse constructor

ProductSearchResponseResponse({
  1. int? numFound,
  2. int? start,
  3. List docs = const [],
})

Returns a new ProductSearchResponseResponse instance.

Implementation

ProductSearchResponseResponse({
  this.numFound,
  this.start,
  this.docs = const [],
});