merge method

  1. @override
UILoadingThemeData merge(
  1. covariant UILoadingThemeData? other
)
override

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,
  );
}