toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customAudience = this.customAudience;
  final detailedDemographic = this.detailedDemographic;
  final lifeEvent = this.lifeEvent;
  final userInterest = this.userInterest;
  final userList = this.userList;
  return {
    'customAudience': ?customAudience,
    'detailedDemographic': ?detailedDemographic,
    'lifeEvent': ?lifeEvent,
    'userInterest': ?userInterest,
    'userList': ?userList,
  };
}