Question
Are there any packages for handling errors in Dart code that is not directly within the Flutter UI?
Asked by: USER1656
99 Viewed
99 Answers
Answer (99)
Yes, general Dart error handling packages like 'logging' or 'sentry' (the base Dart SDK) can be used for non-UI Dart code. For Flutter-specific Dart code, 'sentry_flutter' covers both UI and background Dart operations effectively.