ListMulticloudDataTransferSupportedServicesResponse.fromJson constructor

ListMulticloudDataTransferSupportedServicesResponse.fromJson(
  1. 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?,
    );