initialize method

Future<void> initialize({
  1. String? apiKey,
})

Initializes the SDK.

apiKey is optional. If not provided, the plugin searches for ZarliAPIKey in the Info.plist (iOS) or AndroidManifest.xml (Android).

Implementation

Future<void> initialize({String? apiKey}) {
  throw UnimplementedError('initialize() has not been implemented.');
}