copyWith method
Implementation
PermittedProjects copyWith({List<ProjectIdentifierBean>? projects}) {
return PermittedProjects(
projects: projects ?? this.projects,
);
}
PermittedProjects copyWith({List<ProjectIdentifierBean>? projects}) {
return PermittedProjects(
projects: projects ?? this.projects,
);
}