ReadMoreContainer constructor

const ReadMoreContainer({
  1. String text = '',
  2. int trimLines = 5,
  3. double fontSize = 16,
  4. double padding = 10,
  5. double letterSpacing = 0.5,
  6. Color? color,
  7. bool isCollapsed = true,
  8. Key? key,
})

Implementation

const ReadMoreContainer({
  this.text = '',
  this.trimLines = 5,
  this.fontSize = 16,
  this.padding = 10,
  this.letterSpacing = 0.5,
  this.color,
  this.isCollapsed = true,
  super.key
});