i'm facing a problem here with Firebase analytics, in the documentation there is no explanation for how to add a custom Event (the docs specify how to add a custom event parameter not an event), and in the sample code it just shows that you set the event name with a String according to your need.
Analytics.logEvent("Custom_Event", parameters: [
"name": name as NSObject,
"full_text": text as NSObject
])
after using sample code this there are no events in the dashboard regarding this event.
question here is this sufficient? and does it get registered automatically? if so do i also have to register custom event params for every event? or the custom event parameters should only be registered for pre defined events .