CompletionResponse constructor

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

Implementation

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