setBaseSDKUrl function

void setBaseSDKUrl(
  1. String gathererUrl,
  2. String inventUrl,
  3. String vUrl
)

Reference vUrl -> valor URL, inventUrl -> inventory URL, gathererUrl -> gatherer URL,

Implementation

void setBaseSDKUrl(String gathererUrl, String inventUrl, String vUrl) {
  valorUrl = vUrl;
  baseUrl = gathererUrl;
  inventoryUrl = inventUrl;
}