toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ageRange = this.ageRange;
  final category = this.category;
  final device = this.device;
  final entity = this.entity;
  final gender = this.gender;
  final incomeRange = this.incomeRange;
  final lineup = this.lineup;
  final location = this.location;
  final parentalStatus = this.parentalStatus;
  final userInterest = this.userInterest;
  final userList = this.userList;
  final youtubeChannel = this.youtubeChannel;
  final youtubeVideo = this.youtubeVideo;
  return {
    'ageRange': ?ageRange,
    'category': ?category,
    'device': ?device,
    'entity': ?entity,
    'gender': ?gender,
    'incomeRange': ?incomeRange,
    'lineup': ?lineup,
    'location': ?location,
    'parentalStatus': ?parentalStatus,
    'userInterest': ?userInterest,
    'userList': ?userList,
    'youtubeChannel': ?youtubeChannel,
    'youtubeVideo': ?youtubeVideo,
  };
}