XTextFieldDropdownOptions constructor

const XTextFieldDropdownOptions({
  1. List? items,
  2. String itemAsString(
    1. dynamic
    )?,
  3. dynamic selectedItem,
  4. bool showSearchBox = false,
})

Creates a new XTextFieldDropdownOptions instance.

Implementation

const XTextFieldDropdownOptions({
  this.items,
  this.itemAsString,
  this.selectedItem,
  this.showSearchBox = false,
});