toJson method

Map<String, dynamic> toJson()

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,
  };
}