open method
- BuildContext context,
- ChildData data,
- MyListTileData tiledata
when pressed on a tile in the DropDownPage this will be invoked
Implementation
void open(
BuildContext context,
ChildData data,
MyListTileData tiledata,
) {
Navigator.of(context).push(MaterialPageRoute(
builder: (newcontext) => Text("${tiledata.title} not yet implemeted"),
));
}