ChatCompletion constructor

ChatCompletion({
  1. String? id,
  2. String? object,
  3. int? created,
  4. String? model,
  5. List<ChatChoice>? choices,
  6. Usage? usage,
})

Implementation

ChatCompletion({
  this.id,
  this.object,
  this.created,
  this.model,
  this.choices,
  this.usage,
});