SelectedListItem<T> constructor

const SelectedListItem<T>({
  1. required T value,
  2. required String title,
  3. String? subtitle,
  4. String? badge,
  5. Color? badgeColor,
  6. IconData? icon,
  7. Color? iconColor,
  8. Widget? iconWidget,
  9. bool enabled = true,
  10. List<TrailingIcon<T>>? trailingIcons,
})

Implementation

const SelectedListItem({
  required this.value,
  required this.title,
  this.subtitle,
  this.badge,
  this.badgeColor,
  this.icon,
  this.iconColor,
  this.iconWidget,
  this.enabled = true,
  this.trailingIcons,
});