ClickThroughUrl.fromJson constructor
ClickThroughUrl.fromJson(
- Map json_
Implementation
ClickThroughUrl.fromJson(core.Map json_)
: this(
computedClickThroughUrl: json_.containsKey('computedClickThroughUrl')
? json_['computedClickThroughUrl'] as core.String
: null,
customClickThroughUrl: json_.containsKey('customClickThroughUrl')
? json_['customClickThroughUrl'] as core.String
: null,
defaultLandingPage: json_.containsKey('defaultLandingPage')
? json_['defaultLandingPage'] as core.bool
: null,
landingPageId: json_.containsKey('landingPageId')
? json_['landingPageId'] as core.String
: null,
);