xxxxxxxxxx
SnackBar(
// background color of your snack-bar
backgroundColor: Colors.red,
// make the content property take a Row
content: Row(
children: <Widget>[
// add your preferred icon here
Icon(
Icons.close,
color: Colors.white,
),
// add your preferred text content here
Text(_accion_toast + ". " + mensaje),
],
),
// the duration of your snack-bar
duration: Duration(milliseconds: 1500),
);
}