MessageBody constructor

const MessageBody({
  1. Key? key,
  2. required String message,
  3. required bool isFromAssistant,
  4. required bool isAnonymous,
})

Implementation

const MessageBody({
  super.key,
  required this.message,
  required this.isFromAssistant,
  required this.isAnonymous,
});