Call .image on your Image to get the ImageProvider.
For example suppose:
Image img = Image.asset('assets/logo.png');
In your case:
Container(
decoration: BoxDecoration(
color: Colors.green,
image: DecorationImage(
image: img.image // <--- .image added here
)
)