How to convert an image from a url to base 64? I'm currently receiving the image by this code
return Image.network(imguUrl,
width: 220.0, height: 220.0, fit: BoxFit.fill);
I want to get the base 64 for the image in target url. If anyone know how to do this please help.