withClientApiKey method
The function sets the client API key and returns the SyneriseInitializer object.
Args: clientApiKey (String): The clientApiKey parameter is a string that represents the API key of the Synerise client. This key is used to authenticate and authorize the client's access to the Synerise platform.
Implementation
SyneriseInitializer withClientApiKey(String clientApiKey) {
_clientApiKey = clientApiKey;
return this;
}