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