ListGlossaryEntriesResponse.fromJson constructor
ListGlossaryEntriesResponse.fromJson(
- Map json_
Implementation
ListGlossaryEntriesResponse.fromJson(core.Map json_)
: this(
glossaryEntries: (json_['glossaryEntries'] as core.List?)
?.map((value) => GlossaryEntry.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);