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