HttpRouteRule constructor

HttpRouteRule({
  1. String? description,
  2. HttpHeaderAction? headerAction,
  3. List<HttpRouteRuleMatch>? matchRules,
  4. int? priority,
  5. HttpRouteAction? routeAction,
  6. String? service,
  7. HttpRedirectAction? urlRedirect,
})

Implementation

HttpRouteRule({
  this.description,
  this.headerAction,
  this.matchRules,
  this.priority,
  this.routeAction,
  this.service,
  this.urlRedirect,
});