setBaseUrl static method

void setBaseUrl(
  1. String url
)

Sets a custom base URL for EZVIZ API

Use this for custom or private EZVIZ deployments

Example:

EzvizConstants.setBaseUrl('https://custom.ezvizlife.com');

Implementation

static void setBaseUrl(String url) {
  _baseUrl = url;
}