ProductListResult constructor

ProductListResult({
  1. bool? goScroll,
  2. int? totalNum,
  3. List<Product>? list,
  4. String? pageId,
})

Implementation

ProductListResult({
  this.goScroll,
  this.totalNum,
  this.list,
  this.pageId,
});