fromJSON static method
Implementation
static EncryptedSchoolingInfo fromJSON(Map<String, dynamic> data) {
return EncryptedSchoolingInfo(
startDate: (data["startDate"] as int?),
endDate: (data["endDate"] as int?),
school: (data["school"] as String?),
typeOfEducation: data["typeOfEducation"] == null ? null : CodeStub.fromJSON(data["typeOfEducation"]),
encryptedSelf: (data["encryptedSelf"] as Base64String?)
);
}