ChatMessage.fromJson constructor

ChatMessage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ChatMessage.fromJson(Map<String, dynamic> json) {
  return ChatMessage(
    chatByType: json['chatByType'],
    transcript: TranscriptData.fromJson(json['transcript']),
    timestamp: json['timestamp'],
    id: json['id'],
  );
}