getArchivedChatsFromServer method
Implementation
@override
getArchivedChatsFromServer() async {
try {
await mirrorFlyMethodChannel.invokeMethod('getArchivedChatsFromServer');
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}