copyFrom method

  1. @override
AntdProgressCircleStyle copyFrom(
  1. covariant AntdProgressCircleStyle? style
)
override

Implementation

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