You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had trouble getting errors reported. Synchronous errors where caught but not asynchronous ones. The problem was that WidgetsFlutterBinding.ensureInitialized() was called outside of the error catching zone.
I had trouble getting errors reported. Synchronous errors where caught but not asynchronous ones. The problem was that
WidgetsFlutterBinding.ensureInitialized()
was called outside of the error catching zone.Moving
WidgetsFlutterBinding.ensureInitialized()
insiderunZoned
fixes it and now reports all errors.I think the Readme should get an update.
The text was updated successfully, but these errors were encountered: