concat method
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);
}