UpDropDown constructor
const
UpDropDown({
- Key? key,
- String? value,
- required List<
UpLabelValuePair> itemList, - required ValueChanged<
String?> onChanged, - UpStyle? style,
- UpColorType? colorType,
- UpInputType? type,
- String? label,
- 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);