textDecorationLine property

TextDecoration textDecorationLine

Implementation

TextDecoration get textDecorationLine => _textDecorationLine ?? TextDecoration.none;
void textDecorationLine=(TextDecoration? value)

Implementation

set textDecorationLine(TextDecoration? value) {
  if (_textDecorationLine == value) return;
  _textDecorationLine = value;
  // Non inheritable style change should only update text node in direct children.
  renderBoxModel?.markNeedsLayout();
}