AutoSuggestPicker constructor

AutoSuggestPicker({
  1. Key? key,
  2. required Rxn<DropDownResponse> selectedId,
  3. required RxList<DropDownResponse> listItems,
  4. bool isValidator = false,
  5. bool isAPISearchEnabled = false,
  6. bool isShowAddNewButton = false,
  7. bool isShowResetButton = false,
  8. Future<List<DropDownResponse>> fetchSuggestions(
    1. String query
    )?,
})

Implementation

AutoSuggestPicker({
  Key? key,
  required this.selectedId,
  required this.listItems,
  this.isValidator = false,
  this.isAPISearchEnabled = false,
  this.isShowAddNewButton = false,
  this.isShowResetButton = false,
  this.fetchSuggestions,
}) : super(key: key);