Reward constructor

Reward({
  1. String? userId,
  2. String? taskId,
  3. String? event,
  4. int? quantity,
  5. dynamic rewardId,
  6. dynamic rewardName,
  7. dynamic rewardType,
  8. dynamic rewardValue,
  9. RewardProperties? properties,
})

Implementation

Reward({
  this.userId,
  this.taskId,
  this.event,
  this.quantity,
  this.rewardId,
  this.rewardName,
  this.rewardType,
  this.rewardValue,
  this.properties,
});