Message constructor

const Message({
  1. required String text,
  2. bool isUser = false,
  3. Uint8List? imageBytes,
})

Implementation

const Message({
  required this.text,
  this.isUser = false,
  this.imageBytes, // Добавляем поддержку изображений
});