getTitle function
Returns the title for a location notification model
Implementation
String? getTitle(LocationNotificationModel locationNotificationModel) {
if (locationNotificationModel.key!.contains(MixedConstants.SHARE_LOCATION)) {
return locationNotificationModel.atsignCreator ==
AtLocationNotificationListener().currentAtSign
? locationNotificationModel.receiver
: locationNotificationModel.atsignCreator;
} else {
return locationNotificationModel.atsignCreator ==
AtLocationNotificationListener().currentAtSign
? locationNotificationModel.receiver
: locationNotificationModel.atsignCreator;
}
}