merge method

Merges current AIConversationSummaryStyle with other

Implementation

AIConversationSummaryStyle merge(AIConversationSummaryStyle? other) {
  if (other == null) return this;
  return AIConversationSummaryStyle(
    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,
  );
}