RewardsGrid constructor

const RewardsGrid({
  1. Key? key,
  2. required List<UserReward> rewards,
})

Implementation

const RewardsGrid({
  super.key,
  required this.rewards,
});