copyWith method
FieldConfigurationSchemeProjects
copyWith({
- FieldConfigurationScheme? fieldConfigurationScheme,
- List<
String> ? projectIds,
Implementation
FieldConfigurationSchemeProjects copyWith(
{FieldConfigurationScheme? fieldConfigurationScheme,
List<String>? projectIds}) {
return FieldConfigurationSchemeProjects(
fieldConfigurationScheme:
fieldConfigurationScheme ?? this.fieldConfigurationScheme,
projectIds: projectIds ?? this.projectIds,
);
}