getDeleteMessageBubble method
override this to change view of deleted message
Implementation
@override
Widget getDeleteMessageBubble(
BaseMessage messageObject, CometChatTheme theme) {
return CometChatDeleteMessageBubble(
style: DeletedBubbleStyle(
textStyle: TextStyle(
color: theme.palette.getAccent400(),
fontSize: theme.typography.body.fontSize,
fontWeight: theme.typography.body.fontWeight),
borderColor: theme.palette.getAccent200(),
),
);
}