MedicalTranscriptionSetting.fromJson constructor
MedicalTranscriptionSetting.fromJson(
- Map<String, dynamic> json
)
Implementation
factory MedicalTranscriptionSetting.fromJson(Map<String, dynamic> json) {
return MedicalTranscriptionSetting(
channelIdentification: json['ChannelIdentification'] as bool?,
maxAlternatives: json['MaxAlternatives'] as int?,
maxSpeakerLabels: json['MaxSpeakerLabels'] as int?,
showAlternatives: json['ShowAlternatives'] as bool?,
showSpeakerLabels: json['ShowSpeakerLabels'] as bool?,
vocabularyName: json['VocabularyName'] as String?,
);
}