merge method
Merges current AIAssistBotStyle with other
Implementation
AIAssistBotStyle merge(AIAssistBotStyle? other) {
if (other == null) return this;
return AIAssistBotStyle(
loadingTextStyle: other.loadingTextStyle,
loadingIconTint: other.loadingIconTint,
emptyTextStyle: other.emptyTextStyle,
errorTextStyle: other.errorTextStyle,
errorIconTint: other.errorIconTint,
emptyIconTint: other.emptyIconTint,
shadowColor: other.shadowColor,
background: other.background,
border: other.border,
borderRadius: other.borderRadius,
gradient: other.gradient,
);
}