copyWith method

ContainerForProjectFeatures copyWith({
  1. List<ProjectFeature>? features,
})

Implementation

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