subtitle method

  1. @override
String? subtitle(
  1. IRef contact
)
inherited

Implementation

@override
String? subtitle(IRef contact) {
  String title = "Occasion / Date:  ";
  if (occasion.isNotNullOrBlank) {
    title += "$occasion ";
  }
  return title;
}