Education.fromJson constructor

Education.fromJson(
  1. Map<String, dynamic> json
)

The default constructor.

Implementation

factory Education.fromJson(Map<String, dynamic> json) {
  return Education._(
    degree: json['degree'] as String?,
    endYear: json['endYear'] as String?,
    fieldOfStudy: json['fieldOfStudy'] as String?,
    school: json['school'] as String?,
    schoolType: json['schoolType'] as String?,
    startYear: json['startYear'] as String?,
  );
}