toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final exactMatch = this.exactMatch;
final presentMatch = this.presentMatch;
final queryParameter = this.queryParameter;
final regexMatch = this.regexMatch;
return {
'exactMatch': ?exactMatch,
'presentMatch': ?presentMatch,
'queryParameter': ?queryParameter,
'regexMatch': ?regexMatch,
};
}