ChatTranscript.fromJson constructor

ChatTranscript.fromJson(
  1. List json
)

Implementation

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