I'm using Image gallery saver plugin for saving images. Method
await ImageGallerySaver.saveImage(pngBytes)
returns an object
{filePath: file:///storage/emulated/0/wallpapers/1608205629471.jpg, errorMessage: null, isSuccess: true}
I'd like to get the path of the newly saved file (/storage/emulated/0/wallpapers/1608205629471.jpg
).
Is there a way to achieve that?