getUnreadCount method
Implementation
Widget getUnreadCount() {
if (widget.item.unreadCount != null) {
return TencentCloudChatContactTabItemApplicationCount(count: widget.item.unreadCount ?? 0);
}
return Container();
}
Widget getUnreadCount() {
if (widget.item.unreadCount != null) {
return TencentCloudChatContactTabItemApplicationCount(count: widget.item.unreadCount ?? 0);
}
return Container();
}