Message constructor
const
Message({
- required String text,
- bool isUser = false,
- Uint8List? imageBytes,
- MessageType type = MessageType.text,
- String? toolName,
Implementation
const Message({
required this.text,
this.isUser = false,
this.imageBytes,
this.type = MessageType.text,
this.toolName,
});