GoogleAdsSearchads360V23ServicesSessionAttributesKeyValuePairs.fromJson constructor
GoogleAdsSearchads360V23ServicesSessionAttributesKeyValuePairs.fromJson(
- Map json_
Implementation
GoogleAdsSearchads360V23ServicesSessionAttributesKeyValuePairs.fromJson(
core.Map json_,
) : this(
keyValuePairs: (json_['keyValuePairs'] as core.List?)
?.map(
(value) =>
GoogleAdsSearchads360V23ServicesSessionAttributeKeyValuePair.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);