getSemiTitle method
Implementation
String? getSemiTitle(EventNotificationModel _event, bool _haveResponded) {
return _event.group != null
? (isActionRequired(_event))
? getActionString(_event, _haveResponded)
: null
: 'Action required';
}