send abstract method

  1. @override
Future<StreamedResponse> send(
  1. BaseRequest request, {
  2. Duration? contentTimeout,
})

Sends an HTTP request and asynchronously returns the response.

If contentTimeout is not null the request will be aborted if it takes longer than the given duration to receive the entire response. If the timeout occurs before any reply is received from the server the returned future will as an error with a TimeoutException. If the timout occurs after the reply has been started but before the entire body has been read the response stream will emit a TimeoutException and close.

Implementation

@override
Future<http.StreamedResponse> send(http.BaseRequest request,
    {Duration? contentTimeout});