copyWith method

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

Implementation

ChangedWorklogs copyWith(
    {bool? lastPage,
    String? nextPage,
    String? self,
    int? since,
    int? until,
    List<ChangedWorklog>? values}) {
  return ChangedWorklogs(
    lastPage: lastPage ?? this.lastPage,
    nextPage: nextPage ?? this.nextPage,
    self: self ?? this.self,
    since: since ?? this.since,
    until: until ?? this.until,
    values: values ?? this.values,
  );
}