FlutterDropdownSearch constructor

const FlutterDropdownSearch({
  1. Key? key,
  2. required TextEditingController? textController,
  3. String? hintText,
  4. required List<String>? items,
  5. TextStyle? hintStyle,
  6. TextStyle? style,
  7. TextStyle? dropdownTextStyle,
  8. IconData? suffixIcon,
  9. double? dropdownHeight,
  10. Color? dropdownBgColor,
  11. InputBorder? textFieldBorder,
  12. EdgeInsetsGeometry? contentPadding,
})

Implementation

const FlutterDropdownSearch(
    {super.key,
    required this.textController,
    this.hintText,
    required this.items,
    this.hintStyle,
    this.style,
    this.dropdownTextStyle,
    this.suffixIcon,
    this.dropdownHeight,
    this.dropdownBgColor,
    this.textFieldBorder,
    this.contentPadding});