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 CometChatFormBubble(
key: ValueKey(message.muid),
formMessage: message,
loggedInUser: CometChatUIKit.loggedInUser,
theme: theme);
}