merge method
Merge style from other ZeroChipFilledStyle
Implementation
ZeroChipFilledStyle merge(ZeroChipFilledStyle? other) {
if (other == null) return this;
return copyWith(
backgroundColor: other.backgroundColor,
iconColor: other.iconColor,
textStyle: textStyle?.merge(other.textStyle) ?? other.textStyle,
);
}