copyWith method

ProjectIds copyWith({
  1. List<String>? projectIds,
})

Implementation

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