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