SupportedLanguage.fromJson constructor
SupportedLanguage.fromJson(
- Map json_
Implementation
SupportedLanguage.fromJson(core.Map json_)
: this(
displayName: json_['displayName'] as core.String?,
languageCode: json_['languageCode'] as core.String?,
supportSource: json_['supportSource'] as core.bool?,
supportTarget: json_['supportTarget'] as core.bool?,
);