copyFrom method
Implementation
@override
AntdFooterStyle copyFrom(covariant AntdFooterStyle? style) {
return AntdFooterStyle(
labelStyle: labelStyle.merge(style?.labelStyle),
linkStyle: linkStyle.merge(style?.linkStyle),
contentStyle: contentStyle.merge(style?.contentStyle),
chipStyle: chipStyle.merge(style?.chipStyle),
chipActiveStyle: chipActiveStyle.mergeActive(
chipStyle, style?.chipStyle, style?.chipActiveStyle),
);
}