textShadow property
Implementation
@override
List<Shadow>? get textShadow {
// Get style from self or closest parent if specified style property is not set
// due to style inheritance.
if (_textShadow == null && getParentRenderStyle() != null) {
return getParentRenderStyle()!.textShadow;
}
return _textShadow;
}