GoogleCloudApigeeV1ListKeyValueEntriesResponse.fromJson constructor

GoogleCloudApigeeV1ListKeyValueEntriesResponse.fromJson(
  1. Map json_
)

Implementation

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