TListCard constructor

const TListCard({
  1. Key? key,
  2. required String title,
  3. String? subTitle,
  4. String? imageUrl,
  5. bool isSelected = false,
  6. bool isExpanded = false,
  7. bool isDisabled = false,
  8. bool multiple = false,
  9. int level = 0,
  10. VoidCallback? onTap,
  11. TListCardTheme? theme,
  12. List<TListCard>? children,
})

Creates a list card.

Implementation

const TListCard({
  super.key,
  required this.title,
  this.subTitle,
  this.imageUrl,
  this.isSelected = false,
  this.isExpanded = false,
  this.isDisabled = false,
  this.multiple = false,
  this.level = 0,
  this.onTap,
  this.theme,
  this.children,
});