ApiRequester constructor

ApiRequester(
  1. Client _httpClient,
  2. String _rootUrl,
  3. String _basePath,
  4. Map<String, String> _requestHeaders,
)

Implementation

ApiRequester(
  this._httpClient,
  this._rootUrl,
  this._basePath,
  this._requestHeaders,
) : assert(_rootUrl.endsWith('/'));