GoogleCloudApigeeV1ListInstanceAttachmentsResponse.fromJson constructor

GoogleCloudApigeeV1ListInstanceAttachmentsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ListInstanceAttachmentsResponse.fromJson(core.Map json_)
    : this(
        attachments: json_.containsKey('attachments')
            ? (json_['attachments'] as core.List)
                .map((value) =>
                    GoogleCloudApigeeV1InstanceAttachment.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );