UFUMultiSelectSubHeader constructor

const UFUMultiSelectSubHeader({
  1. required int mainListLength,
  2. int? listLength = 0,
  3. int? selectedItemCount,
  4. bool canShowClearAll = true,
  5. bool canShowCount = true,
  6. VoidCallback? selectAndClearAll,
  7. int? tempSelectedItemsCount,
  8. bool isViewSubList = false,
  9. int? filterListItemsCount,
  10. List<UFUMultiSelectModel> subList = const [],
  11. bool isDisabled = false,
  12. bool showIncludeInactiveButton = false,
  13. bool includeInactive = false,
  14. VoidCallback? onTapIncludeInactiveButton,
  15. Key? key,
})

Implementation

const UFUMultiSelectSubHeader({
  required this.mainListLength,
  this.listLength = 0,
  this.selectedItemCount,
  this.canShowClearAll = true,
  this.canShowCount = true,
  this.selectAndClearAll,
  this.tempSelectedItemsCount,
  this.isViewSubList = false,
  this.filterListItemsCount,
  this.subList = const [],
  this.isDisabled = false,
  this.showIncludeInactiveButton = false,
  this.includeInactive = false,
  this.onTapIncludeInactiveButton,
  super.key});