QuizReward constructor

QuizReward({
  1. String? rewardId,
  2. int? type,
  3. DeliveryReward? delivery,
  4. int? prob,
  5. int? amount,
  6. int? score,
  7. String? condition,
  8. Coupon? coupon,
})

Implementation

QuizReward({
  this.rewardId,
  this.type,
  this.delivery,
  this.prob,
  this.amount,
  this.score,
  this.condition,
  this.coupon,
});