AfterSalesCouponDto constructor

AfterSalesCouponDto(
  1. {required String id,
  2. String? title,
  3. String? description,
  4. required AfterSalesCouponCodeType codeType,
  5. String? code,
  6. DateTime? redeemStartDate,
  7. DateTime? redeemEndDate}
)

Implementation

AfterSalesCouponDto({
  required this.id,
  this.title,
  this.description,
  required this.codeType,
  this.code,
  this.redeemStartDate,
  this.redeemEndDate,
});