setConfigure method

dynamic setConfigure(
  1. String productKey,
  2. String deviceName,
  3. String deviceSecret,
  4. String region,
  5. String subscribeUrl,
  6. String publishUrl,
)

Implementation

setConfigure(String productKey, String deviceName, String deviceSecret,
    String region, String subscribeUrl, String publishUrl) {
  _productKey = productKey;
  _deviceName = deviceName;
  _deviceSecret = deviceSecret;
  _region = region;
  _subscribeUrl = subscribeUrl;
  _publishUrl = publishUrl;
}