JeaText constructor

const JeaText({
  1. Key? key,
  2. required String text,
  3. bool? selectable,
  4. TextAlign? textAlign,
  5. Color? textColor,
  6. TextStyle? style,
  7. double? fontSize,
  8. FontWeight? fontWeight,
  9. double? marginAll,
  10. Color? selectionColor,
  11. int? maxLines,
})

Implementation

const JeaText({
  super.key,
  required this.text,
  this.selectable,
  this.textAlign,
  this.textColor,
  this.style,
  this.fontSize,
  this.fontWeight,
  this.marginAll,
  this.selectionColor,
  this.maxLines,
});