DiscountItem constructor

DiscountItem({
  1. Map<Language, String>? title,
  2. DiscountType? type,
  3. String? value,
})

Implementation

DiscountItem({
  this.title,
  this.type,
  this.value,
});