copyFrom method
Implementation
@override
AntdPageIndicatorStyle copyFrom(covariant AntdPageIndicatorStyle? style) {
return AntdPageIndicatorStyle(
style: this.style.merge(style?.style),
activeStyle:
activeStyle.mergeActive(this.style, style?.style, style?.activeStyle),
);
}