request abstract method

Stream<Response> request(
  1. Request request, [
  2. NextLink? forward
])

A function called when a request reaches this Link

Implementation

Stream<Response> request(
  /// An incoming [Request]
  Request request, [
  /// Function that invokes the [request] function of
  ///   the next [Link]
  ///
  /// Terminating [Link]s do not call this function.
  NextLink? forward,
]);