GetVocabularyFilterResponse.fromJson constructor
Implementation
factory GetVocabularyFilterResponse.fromJson(Map<String, dynamic> json) {
return GetVocabularyFilterResponse(
downloadUri: json['DownloadUri'] as String?,
languageCode: (json['LanguageCode'] as String?)?.toLanguageCode(),
lastModifiedTime: timeStampFromJson(json['LastModifiedTime']),
vocabularyFilterName: json['VocabularyFilterName'] as String?,
);
}