copyWith method
Implementation
PageOfWorklogs copyWith(
{int? maxResults, int? startAt, int? total, List<Worklog>? worklogs}) {
return PageOfWorklogs(
maxResults: maxResults ?? this.maxResults,
startAt: startAt ?? this.startAt,
total: total ?? this.total,
worklogs: worklogs ?? this.worklogs,
);
}