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