hasUnreadCount method

bool hasUnreadCount()

Implementation

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