copyWith method
FeatureBeanPermissibleEstimationTypesItem
copyWith({
- FeatureBeanPermissibleEstimationTypesItemValue? value,
- String? localisedName,
- String? localisedDescription,
Implementation
FeatureBeanPermissibleEstimationTypesItem copyWith(
{FeatureBeanPermissibleEstimationTypesItemValue? value,
String? localisedName,
String? localisedDescription}) {
return FeatureBeanPermissibleEstimationTypesItem(
value: value ?? this.value,
localisedName: localisedName ?? this.localisedName,
localisedDescription: localisedDescription ?? this.localisedDescription,
);
}