title method

String title(
  1. IRef contact
)
override

Implementation

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

  return title;
}