EarnedReward constructor

const EarnedReward({
  1. int? id,
  2. int? rewardId,
  3. String? rewardCode,
  4. String? title,
  5. String? description,
  6. int? points,
  7. String? earnedOn,
})

Implementation

const EarnedReward({
  this.id,
  this.rewardId,
  this.rewardCode,
  this.title,
  this.description,
  this.points,
  this.earnedOn,
});