fromJSON static method

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

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?)
	);
}