我正在使用flutter_bloc,根据this example,我想观察块。但我得到这个错误:
error: The setter 'observer' isn't defined for the type 'Bloc<Event, State>'. (undefined_setter at [login_bloc_project] lib\main.dart:12)
调用此方法时:
void main() {
Bloc.observer = MyBlocObserver();
runApp(MyApp());
}
我如何修复此错误?
2条答案
按热度按时间41zrol4v1#
你可以这样尝试:
nfzehxib2#
您的软件包版本可能低于v8.1.0。BlocObserver已更新为该版本。您可以升级您的依赖关系来解决此问题。
更多信息:https://bloclibrary.dev/#/migration?id=v810