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