getTopics method

Future<void> getTopics({
  1. required List<String> topicIds,
  2. dynamic callback(
    1. FlyResponse response
    )?,
})

This method is used to get the topic list.

Implementation

Future<void> getTopics(
    {required List<String> topicIds,
    Function(FlyResponse response)? callback}) async {
  throw UnimplementedError('getTopics has not been implemented.');
}