toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final ageRanges = this.ageRanges;
final coverage = this.coverage;
final gender = this.gender;
final index = this.index;
final locations = this.locations;
final parentalStatus = this.parentalStatus;
final potentialYoutubeReach = this.potentialYoutubeReach;
final userInterests = this.userInterests;
return {
'ageRanges': ?ageRanges,
'coverage': ?coverage,
'gender': ?gender,
'index': ?index,
'locations': ?locations,
'parentalStatus': ?parentalStatus,
'potentialYoutubeReach': ?potentialYoutubeReach,
'userInterests': ?userInterests,
};
}