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