toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final excludedPrimaryTypes = this.excludedPrimaryTypes;
final excludedTypes = this.excludedTypes;
final includedPrimaryTypes = this.includedPrimaryTypes;
final includedTypes = this.includedTypes;
final languageCode = this.languageCode;
final locationRestriction = this.locationRestriction;
final maxResultCount = this.maxResultCount;
final rankPreference = this.rankPreference;
final regionCode = this.regionCode;
final routingParameters = this.routingParameters;
return {
'excludedPrimaryTypes': ?excludedPrimaryTypes,
'excludedTypes': ?excludedTypes,
'includedPrimaryTypes': ?includedPrimaryTypes,
'includedTypes': ?includedTypes,
'languageCode': ?languageCode,
'locationRestriction': ?locationRestriction,
'maxResultCount': ?maxResultCount,
'rankPreference': ?rankPreference,
'regionCode': ?regionCode,
'routingParameters': ?routingParameters,
};
}