onBackground method
Implementation
Widget onBackground() {
return Container(
color: Colors.red,
child: const m.Material(
child: ListTile(
trailing: Icon(
Icons.delete,
color: Colors.white,
size: 36,
),
),
),
);
}