initialize method
Initializes the client (call this if using persistent token storage)
Implementation
Future<void> initialize() async {
final storage = _tokenStorage;
if (storage is DelegatingTokenStorage) {
await storage.initialize();
_logger.info('Token storage initialized');
}
// Set up auto-refresh if enabled
if (_config.enableAutoRefresh) {
_setupAutoRefresh();
}
}