CarouselCardWidget constructor
const
CarouselCardWidget({
- Key? key,
- required double? cardHeight,
- required String? theme,
- required String? title,
- required double? titleSize,
- required Color? titleColor,
- required List? topLabels,
- required List? bottomLabels,
- required String? imageUrl,
- required dynamic parser(),
- dynamic onClick()?,
- bool? isCoverBanner,
- bool? hideShading,
- double? imageWidth,
- double? imageHeight,
- BoxFit? imageFill,
- Color? borderColor,
- double? borderSize,
- Map<
String, dynamic> ? contextData, - 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);