CouponIcon constructor

const CouponIcon({
  1. Key? key,
  2. required String getCurrencyFormatted(
    1. double coupon
    ),
  3. Coupon? coupon,
  4. double? size,
  5. CouponTranslate? translate,
  6. TextStyle? textStyle,
})

Implementation

const CouponIcon({
  super.key,
  required this.getCurrencyFormatted,
  this.coupon,
  this.size,
  this.translate,
  this.textStyle,
});