ChatResponse constructor

ChatResponse({
  1. required String id,
  2. required String model,
  3. required Usage usage,
  4. required List<Choice> choices,
})

Implementation

ChatResponse({
  required this.id,
  required this.model,
  required this.usage,
  required this.choices,
});