PagifyText constructor

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

pagify text widget constructor

Implementation

const PagifyText(
  this.text, {
  super.key,
  this.color,
  this.fontSize,
  this.fontWeight = FontWeight.normal,
  this.overflow,
  this.textAlign = TextAlign.start,
  this.maxLines,
  this.height,
});