Cubit is not listening to Bloc
I’m working on a Flutter app following the BLoC pattern with clean architecture and using dependency injection for service management. I have an authbloc that handles user authentication and emits a authresult to indicate whether the user is logged in or not. I also have a usercubit that is supposed to listen to the authbloc. When the user is authenticated, the usercubit should trigger a function to fetch user info.