wrap your image inside a CliRRect and give the BorderRadius.circular("width") to this widget which "width" is the width of the image itself.
Here is an example:
ClipRRect(
borderRadius: BorderRadius.circular(10),
child: Image.network(
'link'
width: 10,
)
)