CuReDropdownItem constructor

CuReDropdownItem({
  1. String? label,
  2. Widget? widget,
  3. required String value,
  4. IconData? icon,
  5. Color? color,
  6. bool? disabled,
})

Implementation

CuReDropdownItem({
  this.label,
  this.widget,
  required this.value,
  this.icon,
  this.color,
  this.disabled,
});