toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final age = this.age;
  final audienceSegments = this.audienceSegments;
  final gender = this.gender;
  final householdIncome = this.householdIncome;
  final parentalStatus = this.parentalStatus;
  return {
    'age': ?age,
    'audienceSegments': ?audienceSegments,
    'gender': ?gender,
    'householdIncome': ?householdIncome,
    'parentalStatus': ?parentalStatus,
  };
}