copyWith method
Implementation
ContainerForProjectFeatures copyWith({List<ProjectFeature>? features}) {
return ContainerForProjectFeatures(
features: features ?? this.features,
);
}
ContainerForProjectFeatures copyWith({List<ProjectFeature>? features}) {
return ContainerForProjectFeatures(
features: features ?? this.features,
);
}