LanguageCodesSet.fromJson constructor

LanguageCodesSet.fromJson(
  1. Map json_
)

Implementation

LanguageCodesSet.fromJson(core.Map json_)
    : this(
        languageCodes: json_.containsKey('languageCodes')
            ? (json_['languageCodes'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );