AtomText constructor

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

Implementation

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