set image net to image in flutter code example
Example 1: network image url
Image.network(
'https://picsum.photos/250?image=9',
)
Example 2: flutter network image size
Image.network(
url,
width: width,
height: height,
fit: BoxFit.cover,
));