TextOneLineEllipsisWithFade constructor

const TextOneLineEllipsisWithFade(
  1. String data, {
  2. Key? key,
  3. TextStyle? style,
  4. StrutStyle? strutStyle,
  5. TextAlign textAlign = TextAlign.start,
  6. TextDirection? textDirection,
  7. Locale? locale,
  8. TextOverflow overflow = TextOverflow.ellipsis,
  9. double? textScaleFactor,
  10. TextWidthBasis textWidthBasis = TextWidthBasis.parent,
  11. TextHeightBehavior? textHeightBehavior,
})

Implementation

const TextOneLineEllipsisWithFade(
  this.data, {
  Key? key,
  this.style,
  this.strutStyle,
  this.textAlign = TextAlign.start,
  this.textDirection,
  this.locale,
  this.overflow = TextOverflow.ellipsis,
  this.textScaleFactor,
  this.textWidthBasis = TextWidthBasis.parent,
  this.textHeightBehavior,
}) : super(key: key);