copyWith method
Implementation
ProjectIds copyWith({List<String>? projectIds}) {
return ProjectIds(
projectIds: projectIds ?? this.projectIds,
);
}
ProjectIds copyWith({List<String>? projectIds}) {
return ProjectIds(
projectIds: projectIds ?? this.projectIds,
);
}