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
When manually constructing a Dart Isolate, it's possible to use Isolate.addErrorListener to effectively catch all exceptions and errors, passing them as messages to the calling Isolate. It would be great if Flutter Background Service supported this type of behavior.
If it did so, the it could present these errors via a service.onError method similar to service.on. This would reduce the need to wrap all parts of the back end in try { } catch { } blocks.
The text was updated successfully, but these errors were encountered:
Thanks for the great plugin. : )
When manually constructing a Dart Isolate, it's possible to use Isolate.addErrorListener to effectively catch all exceptions and errors, passing them as messages to the calling Isolate. It would be great if Flutter Background Service supported this type of behavior.
If it did so, the it could present these errors via a
service.onError
method similar toservice.on
. This would reduce the need to wrap all parts of the back end intry { } catch { }
blocks.The text was updated successfully, but these errors were encountered: