CouponIcon constructor

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

Implementation

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