SchoolingInfo.fromJSON constructor

SchoolingInfo.fromJSON(
  1. Map<String, dynamic> data
)

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"])
	);
}