ChatThreadProcessingStatusRow constructor

const ChatThreadProcessingStatusRow({
  1. Key? key,
  2. required String text,
  3. DateTime? startedAt,
  4. int? totalBytes,
  5. int? linesAdded,
  6. int? linesRemoved,
  7. VoidCallback? onCancel,
  8. bool showCancelButton = false,
  9. bool cancelEnabled = true,
})

Implementation

const ChatThreadProcessingStatusRow({
  super.key,
  required this.text,
  this.startedAt,
  this.totalBytes,
  this.linesAdded,
  this.linesRemoved,
  this.onCancel,
  this.showCancelButton = false,
  this.cancelEnabled = true,
});