merge method
Implementation
ZeroRadioStyle merge(ZeroRadioStyle? other) {
if (other == null) return this;
return copyWith(
activeColor: other.activeColor,
disabledColor: other.disabledColor,
inactiveColor: other.inactiveColor,
);
}