ListElement constructor

ListElement({
  1. String? brandName,
  2. int? brandId,
  3. double? maxDiscountAmount,
  4. List<Product>? goodsList,
  5. String? brandFeatures,
  6. int? sales,
  7. double? maxDiscount,
})

Implementation

ListElement({
  this.brandName,
  this.brandId,
  this.maxDiscountAmount,
  this.goodsList,
  this.brandFeatures,
  this.brandLogo,
  this.sales,
  this.maxDiscount,
});