mount method
Adds this element to the tree as a child of parent.
Implementation
@override
void mount(Element? parent) {
final listView = widget as ListView;
selectedIndex = listView.initialSelectedIndex;
hoveredIndex = listView.initialHoveredIndex;
super.mount(parent);
rebuild();
}