SelectedListItem<T> constructor

const SelectedListItem<T>({
  1. required T value,
  2. required String title,
  3. String? subtitle,
  4. IconData? icon,
  5. Color? iconColor,
})

Implementation

const SelectedListItem({
  required this.value,
  required this.title,
  this.subtitle,
  this.icon,
  this.iconColor,
});