subtitle method

String? subtitle(
  1. IRef contact
)
override

Implementation

String? subtitle(IRef contact) {
  String subtitle = "";
  if (this.reason != null) {
    subtitle += "$reason ";
  }
  return nonBlank(subtitle.trim());
}