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