GoogleAdsSearchads360V23ServicesListInsightsEligibleDatesResponse.fromJson constructor
GoogleAdsSearchads360V23ServicesListInsightsEligibleDatesResponse.fromJson(
- Map json_
Implementation
GoogleAdsSearchads360V23ServicesListInsightsEligibleDatesResponse.fromJson(
core.Map json_,
) : this(
dataMonths: (json_['dataMonths'] as core.List?)
?.map((value) => value as core.String)
.toList(),
lastThirtyDays: json_.containsKey('lastThirtyDays')
? GoogleAdsSearchads360V23CommonDateRange.fromJson(
json_['lastThirtyDays'] as core.Map<core.String, core.dynamic>,
)
: null,
);