HTTPRouteDestination constructor

const HTTPRouteDestination({
  1. required Destination destination,
  2. int? weight,
  3. Headers? headers,
})

The main constructor.

Implementation

const HTTPRouteDestination({
  required this.destination,
  this.weight,
  this.headers,
});