getBaseUrl static method

String getBaseUrl()

Implementation

static String getBaseUrl() {
  if (isWeb) {
    return BytedeskConstants.httpBaseUrl;
  } else if (isAndroid) {
    return BytedeskConstants.httpBaseUrlAndroid;
  } else if (isIOS) {
    return BytedeskConstants.httpBaseUrliOS;
  } else {
    return BytedeskConstants.httpBaseUrl;
  }
}