1
0
mirror of https://github.com/WuKongIM/WuKongIMFlutterSDK synced 2025-06-09 06:55:27 +00:00
2024-08-18 19:41:55 +08:00

18 lines
434 B
Dart

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