toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ageRanges = this.ageRanges;
  final countryLocations = this.countryLocations;
  final gender = this.gender;
  final incomeRanges = this.incomeRanges;
  final lineups = this.lineups;
  final parentalStatus = this.parentalStatus;
  final subCountryLocations = this.subCountryLocations;
  final topicAudienceCombinations = this.topicAudienceCombinations;
  final userList = this.userList;
  return {
    'ageRanges': ?ageRanges,
    'countryLocations': ?countryLocations,
    'gender': ?gender,
    'incomeRanges': ?incomeRanges,
    'lineups': ?lineups,
    'parentalStatus': ?parentalStatus,
    'subCountryLocations': ?subCountryLocations,
    'topicAudienceCombinations': ?topicAudienceCombinations,
    'userList': ?userList,
  };
}