dropdownHeight property

  1. @override
double get dropdownHeight
override

Gets the height of the dropdown suggestions list.

Currently set to a fixed height of 200 pixels.

Implementation

@override
double get dropdownHeight {
  double height = 0;

  if (suggestionsExpanded) {
    height = dropdownMaxHeight;
  }
  return height;
}