TextOverflowWidget constructor

const TextOverflowWidget({
  1. required Widget child,
  2. TextOverflowAlign align = TextOverflowAlign.right,
  3. double? maxHeight,
  4. TextOverflowPosition position = TextOverflowPosition.end,
  5. Color? debugOverflowRectColor,
  6. TextOverflowClearType clearType = TextOverflowClearType.blendModeClear,
})

Implementation

const TextOverflowWidget({
  required this.child,
  this.align = TextOverflowAlign.right,
  this.maxHeight,
  this.position = TextOverflowPosition.end,
  this.debugOverflowRectColor,
  this.clearType = TextOverflowClearType.blendModeClear,
});