ChatTranscript.fromJson constructor
ChatTranscript.fromJson(
- List json
Implementation
factory ChatTranscript.fromJson(List<dynamic> json) {
return ChatTranscript(
messages: json.map((message) => ChatMessage.fromJson(message)).toList(),
);
}