AccumulatedTextStream constructor

const AccumulatedTextStream({
  1. required String itemId,
  2. String? turnId,
  3. String status = 'in_progress',
  4. String text = '',
  5. String? senderName,
  6. String? phase,
})

Implementation

const AccumulatedTextStream({
  required this.itemId,
  this.turnId,
  this.status = 'in_progress',
  this.text = '',
  this.senderName,
  this.phase,
});