TranslationConfig.fromJson constructor

TranslationConfig.fromJson(
  1. Map json_
)

Implementation

TranslationConfig.fromJson(core.Map json_)
    : this(
        targetLanguage: json_.containsKey('targetLanguage')
            ? json_['targetLanguage'] as core.String
            : null,
      );