TextStyled constructor

TextStyled({
  1. TextStyle textStyle = const TextStyle(),
  2. TextAlign textAlign = TextAlign.start,
  3. bool softWrap = true,
  4. TextOverflow overflow = TextOverflow.clip,
  5. int? maxLines,
})

Implementation

TextStyled({
  this.textStyle = const TextStyle(),
  this.textAlign = TextAlign.start,
  this.softWrap = true,
  this.overflow = TextOverflow.clip,
  this.maxLines,
});