AppDropdownItem<T> constructor

const AppDropdownItem<T>({
  1. required T value,
  2. required String label,
  3. Widget? leading,
  4. String? avatarUrl,
  5. String? initials,
  6. String? subtitle,
})

Implementation

const AppDropdownItem({
  required this.value,
  required this.label,
  this.leading,
  this.avatarUrl,
  this.initials,
  this.subtitle,
});