copyFrom method

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

Implementation

@override
AntdSwiperStyle copyFrom(covariant AntdSwiperStyle? style) {
  return AntdSwiperStyle(
      bodyStyle: bodyStyle?.merge(style?.bodyStyle),
      itemStyle: itemStyle?.merge(style?.itemStyle));
}