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