toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final country = this.country;
final excludedDestinations = this.excludedDestinations;
final feedLabel = this.feedLabel;
final includedDestinations = this.includedDestinations;
final language = this.language;
final targetCountries = this.targetCountries;
return {
'country': ?country,
'excludedDestinations': ?excludedDestinations,
'feedLabel': ?feedLabel,
'includedDestinations': ?includedDestinations,
'language': ?language,
'targetCountries': ?targetCountries,
};
}