I am using PDF().fromUrl instead of PDF().cachedFromUrl, and expecting that PDF().fromUrl will never cache the file. I want to download the file everytime because the PDF is constantly changing on the server. How to force PDF().fromUrl to re-download the file everytime.
I am using
PDF().fromUrl
instead ofPDF().cachedFromUrl
, and expecting thatPDF().fromUrl
will never cache the file. I want to download the file everytime because the PDF is constantly changing on the server. How to forcePDF().fromUrl
to re-download the file everytime.