$GlossaryConfig.fromJson constructor

$GlossaryConfig.fromJson(
  1. Map json_
)

Implementation

$GlossaryConfig.fromJson(core.Map json_)
  : this(
      contextualTranslationEnabled:
          json_['contextualTranslationEnabled'] as core.bool?,
      glossary: json_['glossary'] as core.String?,
      ignoreCase: json_['ignoreCase'] as core.bool?,
    );