withHttpClient method

PivoxBuilder withHttpClient(
  1. Client httpClient
)

Sets the HTTP client to use

If not provided, a new client will be created

Implementation

PivoxBuilder withHttpClient(http.Client httpClient) {
  _httpClient = httpClient;
  return this;
}