EstimationConfigurationBean.fromJson constructor

EstimationConfigurationBean.fromJson(
  1. Map<String, Object?> json
)

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?,
  );
}