chatStateProvider top-level property

dynamic chatStateProvider
final

Implementation

final chatStateProvider =
    StateNotifierProvider.family<ChatRoomNotifier, ChatRoomState, String>(
  (ref, roomId) => ChatRoomNotifier(ref: ref, roomId: roomId),
);