CarouselCardWidget constructor

const CarouselCardWidget({
  1. Key? key,
  2. required double? cardHeight,
  3. required String? theme,
  4. required String? title,
  5. required double? titleSize,
  6. required Color? titleColor,
  7. required List? topLabels,
  8. required List? bottomLabels,
  9. required String? imageUrl,
  10. required dynamic parser(
    1. String
    ),
  11. dynamic onClick()?,
  12. bool? isCoverBanner,
  13. bool? hideShading,
  14. double? imageWidth,
  15. double? imageHeight,
  16. BoxFit? imageFill,
  17. Color? borderColor,
  18. double? borderSize,
  19. Map<String, dynamic>? contextData,
  20. dynamic customUI,
})

Implementation

const CarouselCardWidget(
    {Key? key,
    required this.cardHeight,
    required this.theme,
    required this.title,
    required this.titleSize,
    required this.titleColor,
    required this.topLabels,
    required this.bottomLabels,
    required this.imageUrl,
    required this.parser,
    this.onClick,
    this.isCoverBanner,
    this.hideShading,
    this.imageWidth,
    this.imageHeight,
    this.imageFill,
    this.borderColor,
    this.borderSize,
    this.contextData,
    this.customUI})
    : super(key: key);