textShadowRadius method

  1. @ControllerProps(NodeProps.kPropShadowRadius)
void textShadowRadius(
  1. double textShadowRadius
)

Implementation

@ControllerProps(NodeProps.kPropShadowRadius)
void textShadowRadius(double textShadowRadius) {
  if (textShadowRadius != _textShadowRadius) {
    _textShadowRadius = textShadowRadius;
    markDirty();
  }
}