VComboboxScreen constructor

const VComboboxScreen({
  1. Key? key,
  2. required List searchList,
  3. required TextEditingController searchController,
  4. required String topLabelText,
  5. required String appBarTitle,
  6. String? errorText,
  7. Widget? listTileResultIcon,
  8. Widget? closeIcon,
  9. bool isFocused = false,
  10. VComboboxStyle? style,
  11. VExt? vExt,
})

Implementation

const VComboboxScreen({
  Key? key,
  required this.searchList,
  required this.searchController,
  required this.topLabelText,
  required this.appBarTitle,
  this.errorText,
  this.listTileResultIcon,
  this.closeIcon,
  this.isFocused = false,
  this.style,
  this.vExt,
}) : super(key: key);