flutter get file from image code example
Example 1: flutter download image from url
final ByteData imageData = await NetworkAssetBundle(Uri.parse("YOUR_URL")).load("");
final Uint8List bytes = imageData.buffer.asUint8List();
// display it with the Image.memory widget
Image.memory(bytes);
Example 2: how to display an image in flutter using its filepath
Image.file(File(path))