Version constructor

Version({
  1. bool? archived,
  2. String? description,
  3. String? expand,
  4. String? id,
  5. VersionIssuesStatus? issuesStatusForFixVersion,
  6. String? moveUnfixedIssuesTo,
  7. String? name,
  8. List<SimpleLink>? operations,
  9. bool? overdue,
  10. String? project,
  11. int? projectId,
  12. String? releaseDate,
  13. bool? released,
  14. String? self,
  15. String? startDate,
  16. String? userReleaseDate,
  17. String? userStartDate,
})

Implementation

Version(
    {bool? archived,
    this.description,
    this.expand,
    this.id,
    this.issuesStatusForFixVersion,
    this.moveUnfixedIssuesTo,
    this.name,
    List<SimpleLink>? operations,
    bool? overdue,
    this.project,
    this.projectId,
    this.releaseDate,
    bool? released,
    this.self,
    this.startDate,
    this.userReleaseDate,
    this.userStartDate})
    : archived = archived ?? false,
      operations = operations ?? [],
      overdue = overdue ?? false,
      released = released ?? false;