RemitsoDropdownButton<T> constructor

const RemitsoDropdownButton<T>({
  1. Key? key,
  2. String? label,
  3. required T? value,
  4. required List<DropdownMenuItem<T>> items,
  5. required ValueChanged<T?> onChanged,
  6. String? hint,
  7. Widget? prefixIcon,
})

Implementation

const RemitsoDropdownButton({
  super.key,
  this.label,
  required this.value,
  required this.items,
  required this.onChanged,
  this.hint,
  this.prefixIcon,
});