ReadMoreTextWidget constructor

const ReadMoreTextWidget({
  1. Key? key,
  2. required String text,
  3. int trimLines = 2,
  4. Color? textColor,
  5. double fontSize = 16.0,
  6. FontWeight? fontWeight,
  7. String? fontFamily,
})

Implementation

const ReadMoreTextWidget({
  super.key,
  required this.text,
  this.trimLines = 2,
  this.textColor,
  this.fontSize = 16.0,
  this.fontWeight,
  this.fontFamily,
});