initialize static method
Initialize the Zendesk SDK with the provided accountKey
and appId
Offical Docs iOS: https://developer.zendesk.com/embeddables/docs/chat-sdk-v-2-for-ios/getting_started#initializing-the-sdk Android: https://developer.zendesk.com/embeddables/docs/chat-sdk-v-2-for-android/getting_started#initializing-the-sdk
Implementation
static Future<void> initialize(String accountKey, String appId) async {
await _channel.invokeMethod<void>('initialize', {
'accountKey': accountKey,
'appId': appId,
});
}