subtitle method

String subtitle(
  1. IRef contact
)
override

Implementation

String subtitle(IRef contact) {
  String subtitle = "";
  if (churchPosition != null) {
    subtitle += "$churchPosition ";
  }
//    if (startDate != null) {
//      subtitle += endDate == null ? "since " : "from ";
//      subtitle += "${startDate.formatted()} ";
//    }
//    if (endDate != null) {
//      subtitle += "until ${endDate.formatted()}";
//    }

  return subtitle;
}