request abstract method
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,
]);