HttpClient constructor

HttpClient({
  1. required dynamic apiKey,
  2. bool? shouldRetry,
})

Implementation

HttpClient({required apiKey, bool? shouldRetry})
    : _apiKey = apiKey,
      _shouldRetry = shouldRetry ?? true;