I have added below code to subscribe topics in Firebase:
Messaging.messaging().subscribe(toTopic: "topics/news")
I have waited for more than 24 hours. it is still not available in firebase console.
You should not include the topic/
in the topic name.
try
Messaging.messaging().subscribe(toTopic: "topics/news")
see the example here: