GoogleAdsSearchads360V23CommonHistoricalMetricsOptions.fromJson constructor

GoogleAdsSearchads360V23CommonHistoricalMetricsOptions.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonHistoricalMetricsOptions.fromJson(
  core.Map json_,
) : this(
      includeAverageCpc: json_['includeAverageCpc'] as core.bool?,
      yearMonthRange: json_.containsKey('yearMonthRange')
          ? GoogleAdsSearchads360V23CommonYearMonthRange.fromJson(
              json_['yearMonthRange'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );