getVideoMessageBubble method
      
  
Widget
getVideoMessageBubble(
    
- String? videoUrl,
- String? thumbnailUrl,
- MediaMessage message,
- dynamic onClick()?,
- BuildContext context,
- CometChatTheme theme,
- VideoBubbleStyle? style,
override
    override this to change view inside content view of message type MessageTypeConstants.video
Implementation
@override
Widget getVideoMessageBubble(
    String? videoUrl,
    String? thumbnailUrl,
    MediaMessage message,
    Function()? onClick,
    BuildContext context,
    CometChatTheme theme,
    VideoBubbleStyle? style) {
  return CometChatVideoBubble(
    videoUrl: videoUrl,
    thumbnailUrl: thumbnailUrl,
    style: style,
  );
}