refreshUIStreams method
Refreshes UI streams with latest data from POD. This ensures the UI shows the most current data after app restart.
Implementation
Future<void> refreshUIStreams() async {
if (_isPodStorageEnabled && _podService != null) {
await _podService!.refreshUIStreams();
}
}