textDecorationColor property

Color? textDecorationColor

Implementation

Color? get textDecorationColor {
  return _textDecorationColor;
}
void 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();
}