TranslateTextGlossaryConfig.fromJson constructor
TranslateTextGlossaryConfig.fromJson(
- Map json_
Implementation
TranslateTextGlossaryConfig.fromJson(core.Map json_)
: this(
glossary: json_.containsKey('glossary')
? json_['glossary'] as core.String
: null,
ignoreCase: json_.containsKey('ignoreCase')
? json_['ignoreCase'] as core.bool
: null,
);