DreamMessageBlock constructor

const DreamMessageBlock({
  1. required String type,
  2. String? text,
  3. String? toolName,
  4. Map<String, dynamic>? input,
})

Implementation

const DreamMessageBlock({
  required this.type,
  this.text,
  this.toolName,
  this.input,
});