GoogleCloudContentwarehouseV1ListSynonymSetsResponse.fromJson constructor

GoogleCloudContentwarehouseV1ListSynonymSetsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1ListSynonymSetsResponse.fromJson(core.Map json_)
  : this(
      nextPageToken: json_['nextPageToken'] as core.String?,
      synonymSets: (json_['synonymSets'] as core.List?)
          ?.map(
            (value) => GoogleCloudContentwarehouseV1SynonymSet.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );