LanguageSpoken.fromJson constructor
LanguageSpoken.fromJson(
- Map json_
Implementation
LanguageSpoken.fromJson(core.Map json_)
: this(
languageCode: json_.containsKey('languageCode')
? json_['languageCode'] as core.String
: null,
spoken:
json_.containsKey('spoken') ? json_['spoken'] as core.bool : null,
spokenException: json_.containsKey('spokenException')
? json_['spokenException'] as core.String
: null,
);