ChatThreadStatusIndicator constructor

const ChatThreadStatusIndicator({
  1. Key? key,
  2. required String? statusText,
  3. DateTime? startedAt,
  4. int? totalBytes,
  5. int? linesAdded,
  6. int? linesRemoved,
  7. bool reserveSpace = false,
  8. double size = 14,
  9. double strokeWidth = 2,
})

Implementation

const ChatThreadStatusIndicator({
  super.key,
  required this.statusText,
  this.startedAt,
  this.totalBytes,
  this.linesAdded,
  this.linesRemoved,
  this.reserveSpace = false,
  this.size = 14,
  this.strokeWidth = 2,
});