Version constructor
Version({
- bool? archived,
- String? description,
- String? expand,
- String? id,
- VersionIssuesStatus? issuesStatusForFixVersion,
- String? moveUnfixedIssuesTo,
- String? name,
- List<
SimpleLink> ? operations, - bool? overdue,
- String? project,
- int? projectId,
- String? releaseDate,
- bool? released,
- String? self,
- String? startDate,
- String? userReleaseDate,
- 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;