EstimationFieldBean.fromJson constructor
Implementation
factory EstimationFieldBean.fromJson(Map<String, Object?> json) {
return EstimationFieldBean(
fieldId: json[r'fieldId'] as String?,
displayName: json[r'displayName'] as String?,
);
}