GetVocabularyFilterResponse.fromJson constructor

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

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?,
  );
}