AtomicDropdownItem<T> constructor

const AtomicDropdownItem<T>({
  1. required T value,
  2. required String label,
  3. String? subtitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. bool enabled = true,
})

Implementation

const AtomicDropdownItem({
  required this.value,
  required this.label,
  this.subtitle,
  this.leading,
  this.trailing,
  this.enabled = true,
});