initialize method
Implementation
Future<void> initialize() async {
try {
await _loadStoredAuth();
} catch (e) {
throw StorageException(
'Error inicializando AuthService',
details: e.toString(),
type: StorageType.auth,
);
}
}