title method

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

Implementation

@override
String? title(IRef contact) {
  String title = "Gave gift";
  if (gift.isNotNullOrBlank) title += ": $gift";
  return title;
}