toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final ageRange = this.ageRange;
final devices = this.devices;
final genders = this.genders;
final plannableLocationIds = this.plannableLocationIds;
return {
'ageRange': ?ageRange,
'devices': ?devices,
'genders': ?genders,
'plannableLocationIds': ?plannableLocationIds,
};
}