getRecentChatListHistoryByTopic method

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

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

Implementation

@override
Future<void> getRecentChatListHistoryByTopic(
    {String? topicId,
    required bool firstSet,
    int limit = 15,
    required Function(FlyResponse response) callback}) async {
  //getRecentChats
  String? recentResponse;
  try {
    LogMessage.d("getRecentChatListHistoryByTopic", "firstSet $firstSet");
    recentResponse = await mirrorFlyMethodChannel.invokeMethod(
        'getRecentChatListHistoryByTopic',
        {"topicId": topicId, "firstSet": firstSet, "limit": limit});
    var res = convertRecentChatDataJsonFromString(recentResponse);
    callback.call(FlyResponse(true, res, "recent chats by topic fetched"));
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    callback.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(e.code, e.message, e.details)));
  } on Exception catch (e) {
    LogMessage.d("Exception ", " $e");
    callback.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
  }
}