GoogleAdsSearchads360V23CommonFlexibleRuleUserListInfo.fromJson constructor
GoogleAdsSearchads360V23CommonFlexibleRuleUserListInfo.fromJson(
- Map json_
Implementation
GoogleAdsSearchads360V23CommonFlexibleRuleUserListInfo.fromJson(
core.Map json_,
) : this(
exclusiveOperands: (json_['exclusiveOperands'] as core.List?)
?.map(
(value) =>
GoogleAdsSearchads360V23CommonFlexibleRuleOperandInfo.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
inclusiveOperands: (json_['inclusiveOperands'] as core.List?)
?.map(
(value) =>
GoogleAdsSearchads360V23CommonFlexibleRuleOperandInfo.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
inclusiveRuleOperator: json_['inclusiveRuleOperator'] as core.String?,
);