Challenges constructor

Challenges({
  1. String? image,
  2. String? name,
  3. String? description,
  4. String? event,
  5. String? eventAttribute,
  6. String? variableValue,
  7. List<Milestones>? milestones,
  8. String? sId,
})

Implementation

Challenges(
    {this.image,
    this.name,
    this.description,
    this.event,
    this.eventAttribute,
    this.variableValue,
    this.milestones,
    this.sId});