CText constructor

const CText(
  1. String text, {
  2. Key? key,
  3. TextStyle? style,
  4. int? maxLines,
  5. TextOverflow? overflow,
  6. TextAlign? textAlign,
  7. VoidCallback? onTap,
})

Implementation

const CText(
  this.text, {
  super.key,
  this.style,
  this.maxLines,
  this.overflow,
  this.textAlign,
  this.onTap,
});