Worklog constructor
Worklog({
- UserDetails? author,
- dynamic comment,
- DateTime? created,
- String? id,
- String? issueId,
- List<
EntityProperty> ? properties, - String? self,
- DateTime? started,
- String? timeSpent,
- int? timeSpentSeconds,
- UserDetails? updateAuthor,
- DateTime? updated,
- Visibility? visibility,
Implementation
Worklog(
{this.author,
this.comment,
this.created,
this.id,
this.issueId,
List<EntityProperty>? properties,
this.self,
this.started,
this.timeSpent,
this.timeSpentSeconds,
this.updateAuthor,
this.updated,
this.visibility})
: properties = properties ?? [];