httpConfig property
DataCallHttp?
get
httpConfig
Implementation
DataCallHttp? get httpConfig {
_httpConfig ??= DataCallHttp(
baseURL: httpConfigBaseURL,
client: client,
method: method,
path: path,
fullPath: fullPath,
parametersPattern: parameters,
body: body,
maxRetries: 3);
return _httpConfig;
}