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