hasUnreadCount method
Implementation
bool hasUnreadCount() {
bool has = false;
if (widget.conversation.unreadCount != null) {
if (widget.conversation.unreadCount! > 0) {
has = true;
}
}
return has;
}
bool hasUnreadCount() {
bool has = false;
if (widget.conversation.unreadCount != null) {
if (widget.conversation.unreadCount! > 0) {
has = true;
}
}
return has;
}