AiResponse constructor

const AiResponse({
  1. required String text,
  2. int? tokenCount,
  3. int? generationTimeMs,
})

Implementation

const AiResponse({
  required this.text,
  this.tokenCount,
  this.generationTimeMs,
});