getRecentChatList method
This method is used to get the recent chat list.
Implementation
@override
Future<void> getRecentChatList(
Function(FlyResponse response)? callback) async {
//getRecentChats
String? recentResponse;
try {
recentResponse =
await mirrorFlyMethodChannel.invokeMethod('getRecentChatList');
callback?.call(FlyResponse(
true,
convertRecentChatDataJsonFromString(recentResponse),
FlyConstants.empty));
// return convertRecentChatDataJsonFromString(recentResponse);
} 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)));
}
}