merge method

Implementation

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

  return copyWith(
    color: other.color,
    iconColor: other.iconColor,
    iconSize: other.iconSize,
  );
}