//create video bubble style object let videoBubbleStyle = VideoBubbleStyle()//create object for video bubble let videoBubble = CometChatVideoBubble()//modify style properties videoBubbleStyle.set(backgroundColor: .black) videoBubbleStyle.set(borderWidth: 5.0) videoBubbleStyle.set(borderColor: .red) videoBubbleStyle.set(corner: CometChatCornerStyle(cornerRadius: 10.0)) videoBubbleStyle.set(playIconTint: .red) videoBubbleStyle.set(playIconBackgroundColor: .yello)//set style to the video bubble object videoBubble.set(style: videoBubbleStyle)