textDecorationLine property
TextDecoration
get
textDecorationLine
Implementation
TextDecoration get textDecorationLine => _textDecorationLine ?? TextDecoration.none;
set
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();
}