RawJokeApiClient constructor

RawJokeApiClient({
  1. String hostname = _defaultHostname,
  2. Client? client,
})

Implementation

RawJokeApiClient({
  this.hostname = _defaultHostname,
  http.Client? client,
}) : client = client ?? http.Client();