Milestone constructor

Milestone({
  1. int? id,
  2. int? number,
  3. String? state,
  4. String? title,
  5. String? description,
  6. User? creator,
  7. int? openIssuesCount,
  8. int? closedIssuesCount,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
  11. DateTime? dueOn,
})

Implementation

Milestone({
  this.id,
  this.number,
  this.state,
  this.title,
  this.description,
  this.creator,
  this.openIssuesCount,
  this.closedIssuesCount,
  this.createdAt,
  this.updatedAt,
  this.dueOn,
});