SearchList constructor

const SearchList({
  1. Key? key,
  2. Color dropdownListColor = Colors.grey,
  3. Color dropdownListShadowColor = Colors.grey,
  4. double? dropdownListWidth,
  5. TextStyle? dropdownListItemTextStyle,
  6. required ValueChanged<String> onSelect,
  7. required double dropdownListMargin,
})

Implementation

const SearchList({
  Key? key,
  this.dropdownListColor = Colors.grey,
  this.dropdownListShadowColor = Colors.grey,
  this.dropdownListWidth,
  this.dropdownListItemTextStyle,
  required this.onSelect,
  required this.dropdownListMargin,
}) : super(key: key);