copyWith method

IssueChangelogIds copyWith({
  1. List<int>? changelogIds,
})

Implementation

IssueChangelogIds copyWith({List<int>? changelogIds}) {
  return IssueChangelogIds(
    changelogIds: changelogIds ?? this.changelogIds,
  );
}