CarouselText constructor

const CarouselText({
  1. Key? key,
  2. required String text,
  3. TextAlign? textAlign,
  4. Color? color,
  5. double? fontSize,
  6. FontWeight? fontWeight,
  7. String? fontFamily,
  8. TextOverflow? overflow,
  9. int? maxLines,
})

Implementation

const CarouselText({
  super.key,
  required this.text,
  this.textAlign,
  this.color,
  this.fontSize,
  this.fontWeight,
  this.fontFamily,
  this.overflow,
  this.maxLines,
});