CouponData constructor

const CouponData({
  1. required int id,
  2. required String code,
  3. required String name,
  4. required bool active,
  5. required String type,
  6. String? description,
})

Implementation

const CouponData({
  required this.id,
  required this.code,
  required this.name,
  required this.active,
  required this.type,
  this.description,
});