I am using Xamarin.iOS and saving images with FFImageLoading. I would like to get the path where the image is saved.
In the code below information.FilePath
is null
:
return ImageService.Instance.LoadUrl(imageUrl).
WithCache(CacheType.All).
Success((information, result) =>
{
image.ImagePath = information.FilePath;
}).Retry(3, 5000);
Does anyone know where to get the image path?