copyWith method

Implementation

FeatureResponseBeanFeaturesItemPermissibleEstimationTypesItem copyWith(
    {FeatureResponseBeanFeaturesItemPermissibleEstimationTypesItemValue?
        value,
    String? localisedName,
    String? localisedDescription}) {
  return FeatureResponseBeanFeaturesItemPermissibleEstimationTypesItem(
    value: value ?? this.value,
    localisedName: localisedName ?? this.localisedName,
    localisedDescription: localisedDescription ?? this.localisedDescription,
  );
}