textOverflow property

  1. @override
TextOverflow textOverflow
override

Implementation

@override
TextOverflow get textOverflow {
  return _textOverflow;
}
void textOverflow=(TextOverflow? value)

Implementation

set textOverflow(TextOverflow? value) {
  if (_textOverflow == value) return;
  _textOverflow = value ?? TextOverflow.clip;
  // Non inheritable style change should only update text node in direct children.
  _markTextNeedsLayout();
}