UFUSingleSelectList constructor

const UFUSingleSelectList({
  1. required List<UFUSingleSelectModel> list,
  2. AutoScrollController? scrollController,
  3. String? selectedItemId,
  4. ValueChanged<String>? onSelect,
  5. UFUSingleSelectType type = UFUSingleSelectType.local,
  6. bool isLoading = false,
  7. bool isLoadMore = false,
  8. Widget? listLoader,
  9. bool canShowLoadMore = false,
  10. bool showInActiveUserLabel = false,
  11. Key? key,
})

Implementation

const UFUSingleSelectList({
  required this.list,
  this.scrollController,
  this.selectedItemId,
  this.onSelect,
  this.type = UFUSingleSelectType.local,
  this.isLoading = false,
  this.isLoadMore = false,
  this.listLoader,
  this.canShowLoadMore = false,
  this.showInActiveUserLabel = false,
    super.key});