configure method

void configure(
  1. String appKey, [
  2. String? apiUrl,
  3. String? baseUrl
])

Implementation

void configure(String appKey, [String? apiUrl, String? baseUrl]) {
  _addHubScript(baseUrl);
  _setConfigValue('setAppKey', appKey);
  _setConfigValue('setApiUrl', apiUrl);
  _setStateListener();
}