PathMatcher constructor

PathMatcher({
  1. HttpRouteAction? defaultRouteAction,
  2. String? defaultService,
  3. HttpRedirectAction? defaultUrlRedirect,
  4. String? description,
  5. HttpHeaderAction? headerAction,
  6. String? name,
  7. List<PathRule>? pathRules,
  8. List<HttpRouteRule>? routeRules,
})

Implementation

PathMatcher({
  this.defaultRouteAction,
  this.defaultService,
  this.defaultUrlRedirect,
  this.description,
  this.headerAction,
  this.name,
  this.pathRules,
  this.routeRules,
});