GlossaryTermsSet.fromJson constructor

GlossaryTermsSet.fromJson(
  1. Map json_
)

Implementation

GlossaryTermsSet.fromJson(core.Map json_)
    : this(
        terms: (json_['terms'] as core.List?)
            ?.map((value) => GlossaryTerm.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );