I am trying to toggle selected in a list of ListTile in a Drawer?
ListTile(
title: Text("Name"),
leading: Icon(Icons.dashboard),
onTap: () {
currentSelected.selected = false
this.selected = true;
currentSelected = this; // << How to get the instance of ListTile
},
),