sendWithOptions method

Future<StreamedResponse> sendWithOptions(
  1. BaseRequest request,
  2. TOptions options
)

Implementation

Future<http.StreamedResponse> sendWithOptions(
    http.BaseRequest request, TOptions options) {
  assert(_inner != null, 'inner http client must not be null');
  return _inner!.send(request);
}