When I call Bloc.observer in main.dart, it doesn't work
Asked
Active
Viewed 683 times
0
-
Always post sinppets of your code, not images. – griffins Mar 26 '22 at 06:11
1 Answers
1
You can run it through zone guarded
Runs body in its own error zone.
Creates a new zone using Zone.fork based on zoneSpecification and zoneValues, then runs body in that zone and returns the result.
await runZonedGuarded(
() async {
await BlocOverrides.runZoned(
() async => runApp(MyApp()),
blocObserver: AppBlocObserver(),
);
},
(error, stackTrace) => log(error.toString(), stackTrace: stackTrace),
);

griffins
- 7,079
- 4
- 29
- 54