copyFrom method

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

Implementation

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