CInputDropdown<T> constructor

const CInputDropdown<T>({
  1. Key? key,
  2. required String label,
  3. required List<T> items,
  4. void onChanged(
    1. T? value
    )?,
  5. bool setInitialValue = false,
  6. int? initialValueIndex,
})

Implementation

const CInputDropdown({
  super.key,
  required this.label,
  required this.items,
  this.onChanged,
  this.setInitialValue = false,
  this.initialValueIndex,
});