CampaignBody constructor

CampaignBody({
  1. String? title,
  2. int? highlightRate,
  3. String? slug,
  4. String? link,
  5. String? description,
  6. String? discountStartDate,
  7. String? discountEndDate,
  8. int? limit,
  9. bool? showOnMain,
  10. String? type,
  11. String? priceType,
  12. int? productCount,
  13. int? freeProductCount,
  14. String? photoId,
  15. List<String>? products,
  16. List<String>? brands,
  17. List<String>? categories,
  18. List<String>? tags,
  19. String? storeId,
})

Implementation

CampaignBody({
  this.title,
  this.highlightRate,
  this.slug,
  this.link,
  this.description,
  this.discountStartDate,
  this.discountEndDate,
  this.limit,
  this.showOnMain,
  this.type,
  this.priceType,
  this.productCount,
  this.freeProductCount,
  this.photoId,
  this.products,
  this.brands,
  this.categories,
  this.tags,
  this.storeId,
});