WuKongIMFlutterSDK/example/lib/contestation.dart
2023-08-18 21:55:18 +08:00

15 lines
290 B
Dart

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