TUISelectionCard constructor

const TUISelectionCard({
  1. Key? key,
  2. required TUISelectionCardStyle style,
  3. bool isSelected = false,
  4. bool showChevron = false,
  5. IconData? icon,
  6. int? badgeCount,
  7. Color? badgeColor,
  8. bool isHovered = false,
  9. Function? action,
})

Implementation

const TUISelectionCard({
  super.key,
  required this.style,
  this.isSelected = false,
  this.showChevron = false,
  this.icon,
  this.badgeCount,
  this.badgeColor,
  this.isHovered = false,
  this.action,
});