TranscriberParams.fromJson constructor
Implementation
factory TranscriberParams.fromJson(Map<String, dynamic> json) {
return TranscriberParams(
transcriberRobotId: json['transcriberRobotId'] as String?,
sourceLanguage: json['sourceLanguage'] as String?,
userIdsToTranscribe: (json['userIdsToTranscribe'] as List<dynamic>?)?.cast<String>(),
translationLanguages: (json['translationLanguages'] as List<dynamic>?)?.cast<String>(),
);
}