TSelectDropdown<T, V> constructor

const TSelectDropdown<T, V>({
  1. Key? key,
  2. required TSelectStateNotifier<T, V> stateNotifier,
  3. required ValueChanged<TSelectItem<V>> onItemTapped,
  4. String? footerMessage,
  5. bool multiple = false,
  6. double maxHeight = 200.0,
  7. IconData? selectedIcon = Icons.check,
  8. bool showLoadingIndicator = false,
  9. bool loading = false,
  10. VoidCallback? onScrollEnd,
})

Implementation

const TSelectDropdown({
  super.key,
  required this.stateNotifier,
  required this.onItemTapped,
  this.footerMessage,
  this.multiple = false,
  this.maxHeight = 200.0,
  this.selectedIcon = Icons.check,
  this.showLoadingIndicator = false,
  this.loading = false,
  this.onScrollEnd,
});