getRecentChatListHistoryByTopic method

Future<void> getRecentChatListHistoryByTopic({
  1. String? topicId,
  2. required bool firstSet,
  3. int limit = 15,
  4. required dynamic callback(
    1. FlyResponse response
    ),
})

This method is used to get the recent chat list history by topic.

Implementation

Future<void> getRecentChatListHistoryByTopic(
    {String? topicId,
    required bool firstSet,
    int limit = 15,
    required Function(FlyResponse response) callback}) async {
  throw UnimplementedError(
      'getRecentChatListHistoryByTopic has not been implemented.');
}