toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adTag = this.adTag;
final clickTrackingUrl = this.clickTrackingUrl;
final creativeViewUrl = this.creativeViewUrl;
final ctaType = this.ctaType;
final customCtaButtonText = this.customCtaButtonText;
final descriptionText = this.descriptionText;
final destinationUrl = this.destinationUrl;
final forecastingUrl = this.forecastingUrl;
final impressionUrl = this.impressionUrl;
final videoId = this.videoId;
return {
'adTag': ?adTag,
'clickTrackingUrl': ?clickTrackingUrl,
'creativeViewUrl': ?creativeViewUrl,
'ctaType': ?ctaType,
'customCtaButtonText': ?customCtaButtonText,
'descriptionText': ?descriptionText,
'destinationUrl': ?destinationUrl,
'forecastingUrl': ?forecastingUrl,
'impressionUrl': ?impressionUrl,
'videoId': ?videoId,
};
}