shutdown method

void shutdown()

Clear process-local HTTP credentials and configuration between SDK lifetimes. Native SDK state is reset separately by the state bridge.

Implementation

void shutdown() {
  _baseURL = null;
  _apiKey = null;
  _accessToken = null;
  _defaultHeaders.clear();
  _isConfigured = false;
}