GlossaryTerm.fromJson constructor

GlossaryTerm.fromJson(
  1. Map json_
)

Implementation

GlossaryTerm.fromJson(core.Map json_)
  : this(
      languageCode: json_['languageCode'] as core.String?,
      text: json_['text'] as core.String?,
    );