Task constructor

Task({
  1. String? title,
  2. String? event,
  3. int? frequency,
  4. dynamic conditions,
  5. List<ReferreReward>? referrerRewards,
  6. List<ReferreReward>? referreeRewards,
  7. String? id,
})

Implementation

Task({
  this.title,
  this.event,
  this.frequency,
  this.conditions,
  this.referrerRewards,
  this.referreeRewards,
  this.id,
});