$ClickThroughUrlSuffixProperties.fromJson constructor Null safety
- Map _json
Implementation
$ClickThroughUrlSuffixProperties.fromJson(core.Map _json)
: this(
clickThroughUrlSuffix: _json.containsKey('clickThroughUrlSuffix')
? _json['clickThroughUrlSuffix'] as core.String
: null,
overrideInheritedSuffix: _json.containsKey('overrideInheritedSuffix')
? _json['overrideInheritedSuffix'] as core.bool
: null,
);