copyWith method
Implementation
ProjectScopeBean copyWith(
{List<ProjectScopeBeanAttributes>? attributes, int? id}) {
return ProjectScopeBean(
attributes: attributes ?? this.attributes,
id: id ?? this.id,
);
}
ProjectScopeBean copyWith(
{List<ProjectScopeBeanAttributes>? attributes, int? id}) {
return ProjectScopeBean(
attributes: attributes ?? this.attributes,
id: id ?? this.id,
);
}