copyWith method

IssueTypeIds copyWith({
  1. List<String>? issueTypeIds,
})

Implementation

IssueTypeIds copyWith({List<String>? issueTypeIds}) {
  return IssueTypeIds(
    issueTypeIds: issueTypeIds ?? this.issueTypeIds,
  );
}