copyWith method
Implementation
SubSource copyWith({ String? id,
String? projectSourceId,
String? name,
bool isSelected = false,
}) => SubSource( id: id ?? _id,
projectSourceId: projectSourceId ?? _projectSourceId,
name: name ?? _name,
isSelected: isSelected ?? _isSelected,
);