SupportedLanguage.fromJson constructor

SupportedLanguage.fromJson(
  1. 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?,
      );