getHostUri static method
Implementation
static Uri getHostUri(
String path, [
Map<String, dynamic>? queryParameters,
]) {
if (BytedeskConstants.isDebug) {
return Uri.http(BytedeskConstants.httpBaseUrl, path, queryParameters);
} else {
return Uri.https(BytedeskConstants.httpBaseUrl, path, queryParameters);
}
}