From 375c96141205385e3829626f8c8c94ec3f759c9b Mon Sep 17 00:00:00 2001 From: cogwheel0 <172976095+cogwheel0@users.noreply.github.com> Date: Tue, 30 Sep 2025 15:04:20 +0530 Subject: [PATCH] fix: add comment for ChatMessagesNotifier class Resolves analyzer errors from previous commit. --- lib/features/chat/providers/chat_providers.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/features/chat/providers/chat_providers.dart b/lib/features/chat/providers/chat_providers.dart index db91bf3..f16b9c9 100644 --- a/lib/features/chat/providers/chat_providers.dart +++ b/lib/features/chat/providers/chat_providers.dart @@ -74,9 +74,8 @@ class ComposerHasFocus extends _$ComposerHasFocus { void set(bool value) => state = value; } -// Old class removed - migrated to ChatMessages @riverpod class above -// (keeping this line for reference during migration) -class _OldChatMessagesNotifier extends Notifier> { +// Chat messages notifier class +class ChatMessagesNotifier extends Notifier> { StreamSubscription? _messageStream; ProviderSubscription? _conversationListener; final List _subscriptions = [];