getRecentChatListHistory method
Future<void>
getRecentChatListHistory({
- required bool firstSet,
- int limit = 15,
- required dynamic callback(
- FlyResponse response
override
This method is used to get the recent chat history.
Implementation
@override
Future<void> getRecentChatListHistory(
{required bool firstSet,
int limit = 15,
required Function(FlyResponse response)? callback}) async {
//getRecentChats
String? recentResponse;
try {
recentResponse = await mirrorFlyMethodChannel.invokeMethod(
'getRecentChatListHistory', {"firstSet": firstSet, "limit": limit});
var res = convertRecentChatDataJsonFromString(recentResponse);
callback?.call(FlyResponse(true, res, "recent chats 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)));
}
}