UpDropDown constructor

const UpDropDown({
  1. Key? key,
  2. String? value,
  3. required List<UpLabelValuePair> itemList,
  4. ValueChanged<String?>? onChanged,
  5. UpStyle? style,
  6. UpColorType? colorType,
  7. UpInputType? type,
  8. String? label,
  9. String? hint,
  10. List<String>? values,
  11. Widget? prefixIcon,
  12. EdgeInsets? contentPadding,
  13. ValueChanged<List<String>?>? onMultipleChanged,
  14. bool isMultipleSelect = false,
})

Implementation

const UpDropDown({
  Key? key,
  this.value,
  required this.itemList,
  this.onChanged,
  this.style,
  this.colorType,
  this.type,
  this.label,
  this.hint,
  this.values,
  this.prefixIcon,
  this.contentPadding,
  this.onMultipleChanged,
  this.isMultipleSelect = false,
}) : super(key: key);