MessageBubble constructor

const MessageBubble({
  1. Key? key,
  2. required ChatMessage message,
  3. required bool isCurrentUser,
  4. required SwiftChatTheme theme,
})

Implementation

const MessageBubble({
  super.key,
  required this.message,
  required this.isCurrentUser,
  required this.theme,
});