AvailableReward constructor

const AvailableReward({
  1. int? id,
  2. String? rewardCode,
  3. String? title,
  4. String? description,
  5. int? points,
})

Implementation

const AvailableReward({
  this.id,
  this.rewardCode,
  this.title,
  this.description,
  this.points,
});