$RemarketingConfig.fromJson constructor
$RemarketingConfig.fromJson(
- Map json_
Implementation
$RemarketingConfig.fromJson(core.Map json_)
: this(
advertiserId: json_.containsKey('advertiserId')
? json_['advertiserId'] as core.String
: null,
remarketingEnabled: json_.containsKey('remarketingEnabled')
? json_['remarketingEnabled'] as core.bool
: null,
);