//create text bubble style object
let textBubbleStyle = TextBubbleStyle()
//modify the style properties
textBubbleStyle.set(titleColor: .black)
textBubbleStyle.set(titleFont: UIFont.systemFont(ofSize: 12.0))
textBubbleStyle.set(background: .blue)
textBubbleStyle.set(borderColor: .blue)
textBubbleStyle.set(borderWidth: 2.0)
textBubbleStyle.set(cornerRadius: CometChatCornerStyle(cornerRadius: 5.0))
//set style to the text bubble object
textBubble.set(style: textBubbleStyle)