GetUtterancesViewResponse.fromJson constructor
Implementation
factory GetUtterancesViewResponse.fromJson(Map<String, dynamic> json) {
return GetUtterancesViewResponse(
botName: json['botName'] as String?,
utterances: (json['utterances'] as List?)
?.whereNotNull()
.map((e) => UtteranceList.fromJson(e as Map<String, dynamic>))
.toList(),
);
}