NiceDropDownItem constructor

const NiceDropDownItem({
  1. required String key,
  2. String? label,
  3. IconData? icon,
  4. VoidCallback? onTap,
  5. bool disabled = false,
  6. bool isDivider = false,
})

Implementation

const NiceDropDownItem({
  required this.key,
  this.label,
  this.icon,
  this.onTap,
  this.disabled = false,
  this.isDivider = false,
});