title method

  1. @override
String title(
  1. IRef contact
)
override

Implementation

@override
String title(IRef contact) {
  var title = "";
  // if (this.contactKey?.mxid != contact.id) {
  //   title += "${contactService.load(this.contactKey!).resolveOrNull()?.fullName ?? 'Unnamed'}\n";
  // }
  title += "Birthday on ${birthday!.formatted()}";
  return title;
}