UFUMultiSelectHeader constructor

const UFUMultiSelectHeader({
  1. required String title,
  2. TextEditingController? searchInputCtrl,
  3. Widget? totalAmount,
  4. String? inputHintText,
  5. bool canShowSearchBar = false,
  6. ValueChanged<String>? onSearch,
  7. Widget? headerPrefixChild,
  8. String? helperText,
  9. bool canShowSubList = false,
  10. VoidCallback? showSubList,
  11. bool isSelectedSubListItems = false,
  12. bool isDisabled = false,
  13. required bool isViewSubList,
  14. Key? key,
})

Implementation

const UFUMultiSelectHeader({
  required this.title,
  this.searchInputCtrl,
  this.totalAmount,
  this.inputHintText,
  this.canShowSearchBar = false,
  this.onSearch,
  this.headerPrefixChild,
  this.helperText,
  this.canShowSubList = false,
  this.showSubList,
  this.isSelectedSubListItems = false,
  this.isDisabled = false,
  required this.isViewSubList,
  super.key});