1
0
mirror of https://github.com/WuKongIM/WuKongIMFlutterSDK synced 2025-06-06 05:13:41 +00:00
2023-11-29 17:46:32 +08:00

17 lines
346 B
Dart

import 'package:wukongimfluttersdk/entity/conversation.dart';
class UIConversation {
String lastContent = '';
String channelAvatar = '';
String channelName = '';
WKUIConversationMsg msg;
UIConversation(this.msg);
String getUnreadCount() {
if (msg.unreadCount > 0) {
return '${msg.unreadCount}';
}
return '';
}
}