FeatureBeanPermissibleEstimationTypesItem.fromJson constructor

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

Implementation

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