TargetingExpansionConfig.fromJson constructor
TargetingExpansionConfig.fromJson(
- Map json_
Implementation
TargetingExpansionConfig.fromJson(core.Map json_)
: this(
excludeFirstPartyAudience:
json_.containsKey('excludeFirstPartyAudience')
? json_['excludeFirstPartyAudience'] as core.bool
: null,
targetingExpansionLevel: json_.containsKey('targetingExpansionLevel')
? json_['targetingExpansionLevel'] as core.String
: null,
);