ChatBubble constructor

const ChatBubble({
  1. Key? key,
  2. required bool mine,
  3. required String text,
})

Implementation

const ChatBubble({super.key, required this.mine, required this.text});