ConversationContent.fromJson constructor

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

Implementation

ConversationContent.fromJson(Map<String, dynamic> json) {
  transcript = json['transcript'];
  type = json['type'];
  text = json['text'];
}