ChatCompletionResponse.fromJson constructor
Implementation
factory ChatCompletionResponse.fromJson(Map<String, dynamic> json) {
return ChatCompletionResponse(
choices:
List<Choice>.from(json['choices'].map((x) => Choice.fromJson(x))),
);
}