initialize method
Initialize with simple parameters for backward compatibility
Implementation
Future<void> initialize({
String? apiKey,
String? environment,
bool autoInitWithAdmin = true,
bool debug = false,
}) async {
final config = OnairosConfig(
apiKey: apiKey,
environment: environment,
autoInitWithAdmin: autoInitWithAdmin,
debug: debug,
);
await initializeApiKey(config);
}