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