GoogleCloudApihubV1ListAttributesResponse.fromJson constructor

GoogleCloudApihubV1ListAttributesResponse.fromJson(
  1. Map json_
)

Implementation

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