TypographyEllipsis constructor

TypographyEllipsis({
  1. bool expandable = false,
  2. required int rows,
  3. String? suffix,
  4. Widget? symbol,
  5. Widget? tooltip,
  6. void onEllipsis(
    1. TypographyEllipsis ellipsis
    )?,
  7. void onExpand()?,
})

Implementation

TypographyEllipsis({
  this.expandable = false,
  required this.rows,
  this.suffix,
  this.symbol,
  this.tooltip,
  this.onEllipsis,
  this.onExpand,
});