merge method

Implementation

ZeroRatingStyle merge(ZeroRatingStyle? other) {
  if (other == null) return this;

  return copyWith(
    activeColor: other.activeColor,
    inactiveColor: other.inactiveColor,
    spacing: other.spacing,
  );
}