copyWith method

ProjectScopeBean copyWith({
  1. List<ProjectScopeBeanAttributes>? attributes,
  2. int? id,
})

Implementation

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