BoardConfigBeanEstimation.fromJson constructor
Implementation
factory BoardConfigBeanEstimation.fromJson(Map<String, Object?> json) {
return BoardConfigBeanEstimation(
type: json[r'type'] as String?,
field: json[r'field'] != null
? BoardConfigBeanEstimationField.fromJson(
json[r'field']! as Map<String, Object?>)
: null,
);
}