How to use Zip plugin in iOS

Hey
Someone already try to use this plugin : https://ionicframework.com/docs/native/zip
It does not works. I have only the response -1
I’m working on iOS. I think the probleme is my dest path. Can i use the assets folder ? :thinking:

Here my code :

this.zip.unzip('https://sample-videos.com/zip/10mb.zip', '../../assets', (progress) => console.log('Unzipping, ' + Math.round((progress.loaded / progress.total) * 100) + '%'))
          .then((result) => {
              if (result === 0) console.log('SUCCESS');
              if (result === -1) console.log('FAILED');
          });
  }

I think the probleme is my dest folder. There is not error message.
I don’t know what path i should use.

Thnaks