RichMediaExitOverride.fromJson constructor
RichMediaExitOverride.fromJson(
- Map json_
Implementation
RichMediaExitOverride.fromJson(core.Map json_)
: this(
clickThroughUrl: json_.containsKey('clickThroughUrl')
? ClickThroughUrl.fromJson(json_['clickThroughUrl']
as core.Map<core.String, core.dynamic>)
: null,
enabled: json_.containsKey('enabled')
? json_['enabled'] as core.bool
: null,
exitId: json_.containsKey('exitId')
? json_['exitId'] as core.String
: null,
);