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
Is your feature request related to a problem? Please describe. I set metadata after every login attempt like this:
void _userSideEffect(User? user) { if (user != null) { Wiredash.of(context).modifyMetaData( (metadata) => metadata ..userId = user.id ..userEmail = user.email, ); } }
When I track an event, it doesn't send the metadata that was added on login attempt, I need to provide the data every time manually.
await Wiredash.trackEvent('send_message');
Describe the solution you'd like It would be very nice that Wiredash SDK sends the metadata automatically when trackEvent is called
trackEvent
Describe alternatives you've considered Maybe this feature can depend on a bool enable/disable field for those who don't want to send metadata.
await Wiredash.trackEvent('send_message', withMetadata: true or false);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
I set metadata after every login attempt like this:
When I track an event, it doesn't send the metadata that was added on login attempt, I need to provide the data every time manually.
Describe the solution you'd like
It would be very nice that Wiredash SDK sends the metadata automatically when
trackEvent
is calledDescribe alternatives you've considered
Maybe this feature can depend on a bool enable/disable field for those who don't want to send metadata.
The text was updated successfully, but these errors were encountered: