encode static method

Map<String, dynamic> encode(
  1. EncryptedSchoolingInfo value
)
override

Implementation

static Map<String, dynamic> encode(EncryptedSchoolingInfo value) {
	Map<String, dynamic> entityAsMap = {
		"startDate" : value.startDate,
		"endDate" : value.endDate,
		"school" : value.school,
		"typeOfEducation" : value.typeOfEducation == null ? null : CodeStub.encode(value.typeOfEducation!),
		"encryptedSelf" : value.encryptedSelf
	};
	return entityAsMap;
}