setToken property

set setToken (String value)

Sets the authentication token

Parameters:

  • value: The new authentication token.

Usage Example:

VenturoApiManager.setToken = "new_token";

Implementation

static set setToken(String value) {
  _checkInitialization();
  instance._token = value;
}