toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final fullPathMatch = this.fullPathMatch;
final headers = this.headers;
final ignoreCase = this.ignoreCase;
final prefixMatch = this.prefixMatch;
final queryParameters = this.queryParameters;
final regexMatch = this.regexMatch;
return {
'fullPathMatch': ?fullPathMatch,
'headers': ?headers,
'ignoreCase': ?ignoreCase,
'prefixMatch': ?prefixMatch,
'queryParameters': ?queryParameters,
'regexMatch': ?regexMatch,
};
}