Définir BackgroundColor pour Snack Bar ne modifie pas la couleur d'arrière-plan

ScaffoldMessenger.of(context).showSnackBar(
          SnackBar(
            backgroundColor: Colors.green,
            content: const Text('Awesome Snackbar!'),
          ),
        );
Sore Serval