copyFrom method
Implementation
@override
AntdLoadingStyle copyFrom(covariant AntdLoadingStyle? style) {
return AntdLoadingStyle(
color: style?.color ?? color,
textStyle: textStyle.merge(style?.textStyle),
size: style?.size ?? size,
duration: style?.duration ?? duration,
);
}