Commerce constructor

Commerce(
  1. int regularPrice, {
  2. int? discountPrice,
  3. int? fixedDiscountPrice,
  4. int? discountRate,
})

Implementation

Commerce(this.regularPrice,
    {this.discountPrice, this.fixedDiscountPrice, this.discountRate});