updateArchiveUnArchiveChat method
This method is used to update the Archive status of the chat.
Implementation
@override
Future<bool?> updateArchiveUnArchiveChat(String jid, bool isArchived) async {
bool? res;
try {
await mirrorFlyMethodChannel.invokeMethod<bool>(
'updateArchiveUnArchiveChat', {"jid": jid, "isArchived": isArchived});
// callback?.call(FlyResponse(true, FlyConstants.empty, FlyConstants.empty));
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
// callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty, FlyException(e.code, e.message, e.details)));
rethrow;
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
// callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty, FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
rethrow;
}
}