Milestone constructor
Milestone({ - int? id,
- int? number,
- String? state,
- String? title,
- String? description,
- User? creator,
- int? openIssuesCount,
- int? closedIssuesCount,
- DateTime? createdAt,
- DateTime? updatedAt,
- DateTime? dueOn,
- DateTime? closedAt,
- String? htmlUrl,
- String? labelsUrl,
- String? nodeId,
- String? url,
})
Implementation
Milestone({
this.id,
this.number,
this.state,
this.title,
this.description,
this.creator,
this.openIssuesCount,
this.closedIssuesCount,
this.createdAt,
this.updatedAt,
this.dueOn,
// Properties from the Timeline API
this.closedAt,
this.htmlUrl,
this.labelsUrl,
this.nodeId,
this.url,
});