setChatArchived method

  1. @override
Future<void> setChatArchived(
  1. String jid,
  2. bool isArchived,
  3. dynamic callback(
    1. FlyResponse response
    )?
)
override

This method is used to set the chat is archived.

Implementation

@override
Future<void> setChatArchived(String jid, bool isArchived,
    Function(FlyResponse response)? callback) 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)));
  } on Exception catch (e) {
    LogMessage.d("Exception ", " $e");
    callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
        FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
  }
}