ContestDataModel constructor

ContestDataModel({
  1. String? sId,
  2. String? image,
  3. String? clientId,
  4. String? name,
  5. String? description,
  6. String? startDate,
  7. DateTime? endDate,
  8. String? createdAt,
  9. String? updatedAt,
  10. List<Challenges>? challenges,
  11. List<Rewards>? rewards,
  12. String? bgColor,
  13. int? iV,
})

Implementation

ContestDataModel({
  this.sId,
  this.image,
  this.clientId,
  this.name,
  this.description,
  this.startDate,
  this.endDate,
  this.createdAt,
  this.updatedAt,
  this.challenges,
  this.rewards,
  this.bgColor,
  this.iV,
});