initialize method
Initialize the integration with the given hub and configuration This method should set up any necessary interceptors or listeners
Implementation
@override
Future<void> initialize(ObslyHub hub) async {
if (_isActive) {
ObslyLogger.warn('UIIntegration already initialized');
return;
}
_hub = hub;
_isActive = true;
ObslyLogger.debug('UIIntegration initialized successfully');
}