ChatResponse.fromJson constructor
Implementation
factory ChatResponse.fromJson(Map<String, dynamic> json) => ChatResponse(
choices: json['choices'] != null ? List<ChatResponseChoice>.from(
json['choices'].map((x) => ChatResponseChoice.fromJson(x))): [],
);