ExpandableDropdownTextfield<T> constructor

const ExpandableDropdownTextfield<T>({
  1. Key? key,
  2. required List<T> items,
  3. T? defaultValue,
  4. dynamic onExpandChanged(
    1. bool
    )?,
  5. required IconData iconData,
  6. dynamic onChanged(
    1. T?
    )?,
  7. String? validator(
    1. T?
    )?,
  8. required Widget builder(
    1. T
    ),
})

Implementation

const ExpandableDropdownTextfield({
  Key? key,
  required this.items,
  this.defaultValue,
  this.onExpandChanged,
  required this.iconData,
  this.onChanged,
  this.validator,
  required this.builder,
}) : super(key: key);