copyWith method

FeatureBeanPermissibleEstimationTypesItem copyWith({
  1. FeatureBeanPermissibleEstimationTypesItemValue? value,
  2. String? localisedName,
  3. 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,
  );
}