copyWith method

PermittedProjects copyWith({
  1. List<ProjectIdentifierBean>? projects,
})

Implementation

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