title method

String title(
  1. IRef contact
)
inherited

Implementation

String title(IRef contact) {
  String title = "Pet ${petType == null ? "" : "$petType: "}$name";
  return title;
}