[firebase_crashlytic] Return Future<bool> as result of method calls to send reports to crashlytic #9461
Unanswered
suesitran
asked this question in
Feature request
Replies: 1 comment 2 replies
-
that does not seem consistent. It should still be future but it should throw respective firebase error type. Did u actually try to capture error there ? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently all Crashlytic methods to send report to Crashlytic return
Future<void>
, and developers do not know when it fails to send report. So I'm suggesting to return aFuture<bool>
value,true
means success, andfalse
means error, and if possible, give details of the error as well.Methods affected:
Beta Was this translation helpful? Give feedback.
All reactions