copyWith method

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

Implementation

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