SubZeroCarouselBanner constructor

const SubZeroCarouselBanner({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor,
  4. Gradient? gradient,
  5. VoidCallback? onTap,
})

Implementation

const SubZeroCarouselBanner({
  super.key,
  required this.child,
  this.backgroundColor,
  this.gradient,
  this.onTap,
});