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