ChallengeRewardModel constructor

ChallengeRewardModel({
  1. required int xpThreshold,
  2. required int creditReward,
  3. bool isClaimed = false,
  4. int claimedCount = 0,
})

Implementation

ChallengeRewardModel({
  required this.xpThreshold,
  required this.creditReward,
  this.isClaimed = false,
  this.claimedCount = 0,
});