merge method
Implementation
@override
UILoadingThemeData merge(covariant UILoadingThemeData? other) {
return UILoadingThemeData(
size: other?.size ?? size,
strokeWidth: other?.strokeWidth ?? strokeWidth,
foregroundColor: other?.foregroundColor ?? foregroundColor,
backgroundColor: other?.backgroundColor ?? backgroundColor,
primary: other?.primary ?? primary,
);
}