We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to send some data through hint in Sentry.captureException.
hint
Sentry.captureException
That data may be null but Hint class does not accept a Map with <String,dynamic> in Hint.withMap constructor.
Hint
<String,dynamic>
Hint.withMap
At the end I just want to see the data I send through Map on the dashboard.
If feasible, please add it.
Change to type from final Map<String, Object> _internalStorage = {}; to final Map<String, dynamic> _internalStorage = {}; in lib/src/hint.dart:42.
final Map<String, Object> _internalStorage = {};
final Map<String, dynamic> _internalStorage = {};
lib/src/hint.dart:42
Yes
The text was updated successfully, but these errors were encountered:
Hey @nimi0112 thanks for writing in with your suggestion, we will discuss and prio this!
Sorry, something went wrong.
Map<String, dynamic>
denrase
Successfully merging a pull request may close this issue.
Problem Statement
I want to send some data through
hint
inSentry.captureException
.That data may be null but
Hint
class does not accept a Map with<String,dynamic>
inHint.withMap
constructor.At the end I just want to see the data I send through Map on the dashboard.
If feasible, please add it.
Solution Brainstorm
Change to type from
final Map<String, Object> _internalStorage = {};
tofinal Map<String, dynamic> _internalStorage = {};
inlib/src/hint.dart:42
.Are you willing to submit a PR?
Yes
The text was updated successfully, but these errors were encountered: