GoogleCloudChannelV1FetchReportResultsRequest.fromJson constructor

GoogleCloudChannelV1FetchReportResultsRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1FetchReportResultsRequest.fromJson(core.Map json_)
    : this(
        pageSize: json_['pageSize'] as core.int?,
        pageToken: json_['pageToken'] as core.String?,
        partitionKeys: (json_['partitionKeys'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );