getFormMessageBubble method

  1. @override
Widget getFormMessageBubble({
  1. String? title,
  2. FormBubbleStyle? formBubbleStyle,
  3. required FormMessage message,
  4. 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);
}