UpDropDown constructor

const UpDropDown({
  1. Key? key,
  2. String? value,
  3. required List<UpLabelValuePair> itemList,
  4. required ValueChanged<String?> onChanged,
  5. UpStyle? style,
  6. UpColorType? colorType,
  7. UpInputType? type,
  8. String? label,
  9. String? hint,
})

Implementation

const UpDropDown({
  Key? key,
  // this.type = UpInputType.outline,
  this.value,
  required this.itemList,
  required this.onChanged,
  this.style,
  this.colorType,
  this.type,
  this.label,
  this.hint,
}) : super(key: key);