FFTextShadow constructor
Implementation
factory FFTextShadow({
FFValue? color,
FFValue? dx,
FFValue? dy,
FFValue? blurRadius,
}) {
final result = create();
if (color != null) result.color = color;
if (dx != null) result.dx = dx;
if (dy != null) result.dy = dy;
if (blurRadius != null) result.blurRadius = blurRadius;
return result;
}