UFUMultiSelectSubList constructor

const UFUMultiSelectSubList({
  1. ScrollController? controller,
  2. required List<UFUMultiSelectModel> subList,
  3. ValueChanged<String>? onSubItemTap,
  4. bool isLoading = false,
  5. bool canShowMore = false,
  6. UFUMultiSelectType type = UFUMultiSelectType.local,
  7. Widget? listLoader,
  8. String searchKeyWord = '',
  9. required String subTitleHeader,
  10. Key? key,
})

Implementation

const UFUMultiSelectSubList({
  this.controller,
  required this.subList,
  this.onSubItemTap,
  this.isLoading = false,
  this.canShowMore = false,
  this.type = UFUMultiSelectType.local,
  this.listLoader,
  this.searchKeyWord = '',
  required this.subTitleHeader,
  super.key});