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