getTopics static method

Future<String?> getTopics({
  1. required List<String> topicIds,
})

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);
}