RoundedBorderedDropdown constructor

const RoundedBorderedDropdown({
  1. Key? key,
  2. required String value,
  3. required List<DropdownMenuItem<String>> items,
  4. required ValueChanged<String?>? onChanged,
  5. required String hintText,
})

Implementation

const RoundedBorderedDropdown({
  super.key,
  required this.value,
  required this.items,
  required this.onChanged,
  required this.hintText,
});