subtitle method

String? subtitle(
  1. IRef contact
)
override

Implementation

String? subtitle(IRef contact) {
  String? subtitle;
  if (focus != null) {
    subtitle = "Studied: $focus";
  }
  return subtitle;
}