StackedCard constructor

const StackedCard({
  1. Key? key,
  2. required AppBanner cardData,
  3. required int index,
  4. void onDeeplinkTap(
    1. String url
    )?,
  5. String? deepLinkPrefix,
  6. TextStyle? titleStyle,
  7. TextStyle? descriptionStyle,
  8. Color? backgroundcolor,
  9. void startAutoplay()?,
  10. void stopAutoplay()?,
})

Implementation

const StackedCard(
    {Key? key,
    required this.cardData,
    required this.index,
    this.onDeeplinkTap,
    this.deepLinkPrefix,
    this.titleStyle,
    this.descriptionStyle,
    this.backgroundcolor,
    this.startAutoplay,
    this.stopAutoplay})
    : super(key: key);