I was able to change the background color of the ListTile using a BoxDecoration inside Container:
ListView (
children: [
new Container (
decoration: new BoxDecoration (
color: Colors.red
),
child: new ListTile (
leading: const Icon(Icons.euro_symbol),
title: Text('250,00')
)
)
]
)