FlickerDropDown<T> constructor

FlickerDropDown<T>(
  1. {Key? key,
  2. required String labelText,
  3. bool? uppercaseLabelAndHint = true,
  4. T? initialSelection,
  5. List<T>? items,
  6. required ValueChanged<T?> onChanged,
  7. Function? validator,
  8. List<String>? optionTitles,
  9. bool readOnly = false,
  10. String? hintText}
)

Implementation

FlickerDropDown({
  Key? key,
  required this.labelText,
  this.uppercaseLabelAndHint = true,
  this.initialSelection,
  this.items,
  required this.onChanged,
  this.validator,
  this.optionTitles,
  this.readOnly = false,
  this.hintText,
}) : super(key: key);