AppDropdown<T> constructor

const AppDropdown<T>({
  1. Key? key,
  2. required String label,
  3. T? value,
  4. required List<T> items,
  5. required String itemLabelBuilder(
    1. T
    ),
  6. required ValueChanged<T?> onChanged,
  7. bool isLabelVisible = true,
})

Implementation

const AppDropdown({
  super.key,
  required this.label,
  this.value,
  required this.items,
  required this.itemLabelBuilder,
  required this.onChanged,
  this.isLabelVisible = true,
});