concat method

  1. @override
CustomChatMessage concat(
  1. ChatMessage other
)
override

Merges this message with another by concatenating the content.

Implementation

@override
CustomChatMessage concat(final ChatMessage other) {
  if (other is! CustomChatMessage) {
    return this;
  }
  return CustomChatMessage(
    role: role,
    content: content + other.content,
  );
}