SearchBox constructor

SearchBox({
  1. Key? key,
  2. required dynamic onvalueChanged(
    1. String value
    ),
  3. bool? progressIndicator,
  4. String? hintText,
  5. IconData? icon,
  6. Widget? clearText,
  7. bool? isFilterVisible,
  8. Function? onBoxClick,
  9. bool isDemoBox = false,
  10. TextEditingController? controller,
  11. Function? onFilterClick,
})

Implementation

SearchBox(
    {Key? key,
    required this.onvalueChanged,
    this.progressIndicator,
    this.hintText,
    this.icon,
    this.clearText,
    this.isFilterVisible,
    this.onBoxClick,
    this.isDemoBox = false,
    this.controller,
    this.onFilterClick})
    : super(key: key);