copyFrom method
Implementation
@override
AntdProgressCircleStyle copyFrom(covariant AntdProgressCircleStyle? style) {
return AntdProgressCircleStyle(
color: style?.color ?? color,
progressColor: style?.progressColor ?? progressColor,
textStyle: textStyle.merge(style?.textStyle),
);
}