Completion constructor

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

Implementation

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