Concurrency in Flutter Bloc: why is the state not propagating through multiple subsequent async functions?
I'm using Flutter with flutter_bloc, and I'm in front of the following scenario. Scenario I have a Cubit with two methods beings loadFoo and loadBar: class UserCubit extends Cubit<UserState> { UserCubit() : super(UserState()); Future loadFoo() async { emit(state.copyWith( foo: await…