EstimationConfigurationBean.fromJson constructor
Implementation
factory EstimationConfigurationBean.fromJson(Map<String, Object?> json) {
return EstimationConfigurationBean(
value: json[r'value'] != null
? EstimationConfigurationBeanValue.fromValue(
json[r'value']! as String)
: null,
localisedName: json[r'localisedName'] as String?,
localisedDescription: json[r'localisedDescription'] as String?,
);
}