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