SchoolingInfo.fromJSON constructor
Implementation
factory SchoolingInfo.fromJSON(Map<String, dynamic> data) {
return SchoolingInfo(
startDate: (data["startDate"] as int?),
endDate: (data["endDate"] as int?),
school: (data["school"] as String?),
typeOfEducation: data["typeOfEducation"] == null ? null : CodeStub.fromJSON(data["typeOfEducation"])
);
}