UFUMultiSelectList constructor

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

Implementation

const UFUMultiSelectList({
  this.controller,
  required this.list,
  this.onItemTap,
  this.isLoading = false,
  this.canShowMore = false,
  this.type = UFUMultiSelectType.local,
  this.listLoader,
  this.searchKeyWord = '',
  this.showInactiveUserLabel = false,
  super.key});