getRecentChatListIncludingArchived method
Future
getRecentChatListIncludingArchived(
)
override
Implementation
@override
Future<dynamic> getRecentChatListIncludingArchived() async {
//filteredRecentChatList
dynamic response;
try {
response = await mirrorFlyMethodChannel
.invokeMethod('getRecentChatListIncludingArchived');
debugPrint("getRecentChatListIncludingArchived ==> $response");
return response;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}