send method

Future<StreamedResponse> send(
  1. BaseRequest request
)

Returns the streamed response after executing the given request. This process is async, thus the streamed response is returned as a future streamed response instance.

Implementation

Future<http.StreamedResponse> send(http.BaseRequest request) async =>
    _client.send(request);