toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final audienceDescription = this.audienceDescription;
final audienceDimensions = this.audienceDimensions;
final countryLocations = this.countryLocations;
final marketingObjective = this.marketingObjective;
return {
'audienceDescription': ?audienceDescription,
'audienceDimensions': ?audienceDimensions,
'countryLocations': ?countryLocations,
'marketingObjective': ?marketingObjective,
};
}