toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fullPathMatch = this.fullPathMatch;
  final headerMatches = this.headerMatches;
  final ignoreCase = this.ignoreCase;
  final metadataFilters = this.metadataFilters;
  final pathTemplateMatch = this.pathTemplateMatch;
  final prefixMatch = this.prefixMatch;
  final queryParameterMatches = this.queryParameterMatches;
  final regexMatch = this.regexMatch;
  return {
    'fullPathMatch': ?fullPathMatch,
    'headerMatches': ?headerMatches,
    'ignoreCase': ?ignoreCase,
    'metadataFilters': ?metadataFilters,
    'pathTemplateMatch': ?pathTemplateMatch,
    'prefixMatch': ?prefixMatch,
    'queryParameterMatches': ?queryParameterMatches,
    'regexMatch': ?regexMatch,
  };
}