VocabularyInfo.fromJson constructor
Implementation
factory VocabularyInfo.fromJson(Map<String, dynamic> json) {
return VocabularyInfo(
languageCode: (json['LanguageCode'] as String?)?.toLanguageCode(),
lastModifiedTime: timeStampFromJson(json['LastModifiedTime']),
vocabularyName: json['VocabularyName'] as String?,
vocabularyState:
(json['VocabularyState'] as String?)?.toVocabularyState(),
);
}