BoardConfigBeanEstimation.fromJson constructor

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

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