getClient static method

HttpClient getClient()

Implementation

static HttpClient getClient() {
  switch (currentType) {
    case HttpClientType.dio:
      return _dioClient;
    case HttpClientType.webrtc:
      return _webRTCClient;
  }
}