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