merge method
Merges current AIConversationStarterStyle with other
Implementation
AIConversationStarterStyle merge(AIConversationStarterStyle? other) {
if (other == null) return this;
return AIConversationStarterStyle(
replyTextStyle: other.replyTextStyle,
loadingTextStyle: other.loadingTextStyle,
backgroundColor: other.backgroundColor,
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,
);
}