getTopics static method
Used as a getTopics class for Mirrorfly used to get Topic details by topic id's
- @required
topicIds
list of topic id's to get topic details
Implementation
static Future<String?> getTopics({required List<String> topicIds}) async {
return FlyChatFlutterPlatform.instance.getTopics(topicIds: topicIds);
}