WuKongIMFlutterSDK/example/lib/contestation.dart
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 '';
}
}