CustomText constructor

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

Implementation

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