getFormMessageBubble method
Widget
getFormMessageBubble({
- String? title,
- FormBubbleStyle? formBubbleStyle,
- required FormMessage message,
- required CometChatTheme theme,
override
override this to change view inside content view of message type MessageTypeConstants.file
Implementation
@override
Widget getFormMessageBubble({
String? title,
FormBubbleStyle? formBubbleStyle,
required FormMessage message,
required CometChatTheme theme,
}) {
return dataSource.getFormMessageBubble(
title: title,
formBubbleStyle: formBubbleStyle,
message: message,
theme: theme);
}