diff --git a/example/lib/contestation.dart b/example/lib/contestation.dart index 666d54b..45a4571 100644 --- a/example/lib/contestation.dart +++ b/example/lib/contestation.dart @@ -7,7 +7,7 @@ class UIConversation { String channelName = ''; WKUIConversationMsg msg; UIConversation(this.msg); - List? reminders = []; + List? reminders; String getUnreadCount() { if (msg.unreadCount > 0) { return '${msg.unreadCount}'; diff --git a/example/lib/home.dart b/example/lib/home.dart index 706a47a..9ccbe64 100644 --- a/example/lib/home.dart +++ b/example/lib/home.dart @@ -150,7 +150,6 @@ class ListViewShowDataState extends State { String content = ""; if (uiConversation.reminders == null) { uiConversation.msg.getReminderList().then((value) { - Logs.debug('执行体系'); uiConversation.reminders = value; setState(() {}); });