textDecorationColor property
Color?
get
textDecorationColor
Implementation
Color? get textDecorationColor {
return _textDecorationColor;
}
set
textDecorationColor
(Color? value)
Implementation
set textDecorationColor(Color? value) {
if (_textDecorationColor == value) return;
_textDecorationColor = value;
// Non inheritable style change should only update text node in direct children.
_markTextNeedsLayout();
}