encode static method

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

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