title method
Implementation
String title(IRef contact) {
String title = "";
// if (this.endDate != null) {
// title += "Attended ${church?.name ?? "church"}";
// } else {
title += "Attends ${church?.name ?? "church"}";
// }
return title;
}