I have been logging my event clicks, which seem to show up but I can't seem to find parameters anywhere in the Firebase Console. All I see is:
Events with custom reporting parameters will show up here
Here is how I am adding parameters:
var map = {'label': value}; _analytics.logEvent(name: 'session_button', parameters: map); I can see session_button showing up in my console, just no data for the event parameters. Am I missing anything?
_analytics.logEvent('session_button', map);