ChangedWorklogs constructor

ChangedWorklogs({
  1. bool? lastPage,
  2. String? nextPage,
  3. String? self,
  4. int? since,
  5. int? until,
  6. List<ChangedWorklog>? values,
})

Implementation

ChangedWorklogs(
    {bool? lastPage,
    this.nextPage,
    this.self,
    this.since,
    this.until,
    List<ChangedWorklog>? values})
    : lastPage = lastPage ?? false,
      values = values ?? [];