RoundedDropDownButton<T> constructor

const RoundedDropDownButton<T>({
  1. Key? key,
  2. T? value,
  3. ValueChanged<T?>? onChanged,
  4. bool isDense = false,
  5. bool isExpanded = false,
  6. TextStyle? style,
  7. DropdownButtonBuilder? selectedItemBuilder,
  8. List<DropdownMenuItem<T>>? items,
  9. RoundedCornerOptions? roundedCornerOptions,
})

Implementation

const RoundedDropDownButton({
  super.key,
  this.value,
  this.onChanged,
  this.isDense = false,
  this.isExpanded = false,
  this.style,
  this.selectedItemBuilder,
  this.items,
  this.roundedCornerOptions,
});