merge method

ZeroRadioStyle merge(
  1. ZeroRadioStyle? other
)

Implementation

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

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