get image from url flutter code example
Example 1: network image url
Image.network(
'https://picsum.photos/250?image=9',
)
Example 2: flutter url image
Image.network('https://picsum.photos/250?image=9')
Example 3: 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);