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