dbgHttpClient property
DebugHttpClient?
get
dbgHttpClient
The underlying HTTP client used to communicate with the Cosmos DB server.
Implementation
DebugHttpClient? get dbgHttpClient {
final client = _client.httpClient;
return (client is DebugHttpClient) ? client : null;
}