Lorem constructor

Lorem({
  1. int length = 50,
  2. Random? random,
  3. TextStyle? style,
  4. TextAlign textAlign = TextAlign.left,
  5. bool softWrap = true,
  6. double textScaleFactor = 1.0,
  7. int? maxLines,
})

Implementation

Lorem({
  this.length = 50,
  this.random,
  this.style,
  this.textAlign = TextAlign.left,
  this.softWrap = true,
  this.textScaleFactor = 1.0,
  this.maxLines,
});