EstimationFieldBean.fromJson constructor

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

Implementation

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