GoogleCloudChannelV1ReportResultsMetadata.fromJson constructor

GoogleCloudChannelV1ReportResultsMetadata.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1ReportResultsMetadata.fromJson(core.Map json_)
    : this(
        dateRange: json_.containsKey('dateRange')
            ? GoogleCloudChannelV1DateRange.fromJson(
                json_['dateRange'] as core.Map<core.String, core.dynamic>)
            : null,
        precedingDateRange: json_.containsKey('precedingDateRange')
            ? GoogleCloudChannelV1DateRange.fromJson(
                json_['precedingDateRange']
                    as core.Map<core.String, core.dynamic>)
            : null,
        report: json_.containsKey('report')
            ? GoogleCloudChannelV1Report.fromJson(
                json_['report'] as core.Map<core.String, core.dynamic>)
            : null,
        rowCount: json_.containsKey('rowCount')
            ? json_['rowCount'] as core.String
            : null,
      );