Gets the height of the dropdown suggestions list.
Currently set to a fixed height of 200 pixels.
@override double get dropdownHeight { double height = 0; if (suggestionsExpanded) { height = dropdownMaxHeight; } return height; }