InputSelectWidget<T> constructor

const InputSelectWidget<T>({
  1. Key? key,
  2. required double width,
  3. required List<T> items,
  4. T? value,
  5. void onChanged(
    1. T?
    )?,
  6. String? hintText,
  7. String? label,
  8. Color? labelColor,
  9. Widget itemBuilder(
    1. T item
    )?,
  10. bool? showProgrees,
  11. Color? progressColor,
})

Implementation

const InputSelectWidget({
  Key? key,
  required this.width,
  required this.items,
  this.value,
  this.onChanged,
  this.hintText,
  this.label,
  this.labelColor,
  this.itemBuilder,
  this.showProgrees,
  this.progressColor,
}) : super(key: key);