S360fTableCard constructor

const S360fTableCard({
  1. required int itemCount,
  2. required CardBuilder cardBuilder,
  3. required void onTap(
    1. int index
    ),
  4. Key? key,
})

Creates a new S360fTableCard.

All parameters are required:

  • itemCount: The number of cards to display
  • cardBuilder: A function that builds the content for each card
  • onTap: A callback function called when a card is tapped

Implementation

const S360fTableCard({
  required this.itemCount,
  required this.cardBuilder,
  required this.onTap,
  super.key,
});