GoogleCloudChannelV1FetchReportResultsRequest.fromJson constructor

GoogleCloudChannelV1FetchReportResultsRequest.fromJson(
  1. Map json_
)

Implementation

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