RewardCard constructor

const RewardCard({
  1. Key? key,
  2. required UserReward reward,
  3. bool? isExpired,
})

Implementation

const RewardCard({
  super.key,
  required this.reward,
  this.isExpired,
});