I have the following custom event and I can't see the parameters of the event on the events tab on the firebase console. Is there anything wrong with my implementation ?
FirebaseAnalytics _analytics = FirebaseAnalytics();
await _analytics.logEvent(
name: 'complete_signup', parameters: {
"name": name,
"email": email,
"registration_date": registrationDate,
"registration_method": registrationMethod});
I see only the event on the console (events tab) but I see no parameters.