HttpRouteMatch constructor

HttpRouteMatch({
  1. required String prefix,
  2. List<HttpRouteHeader>? headers,
  3. HttpMethod? method,
  4. HttpScheme? scheme,
})

Implementation

HttpRouteMatch({
  required this.prefix,
  this.headers,
  this.method,
  this.scheme,
});