syncWithPod method
Syncs data with POD if POD storage is enabled.
Implementation
Future<void> syncWithPod() async {
if (_isPodStorageEnabled && _podService != null) {
await _podService!.syncWithPod();
}
}
Syncs data with POD if POD storage is enabled.
Future<void> syncWithPod() async {
if (_isPodStorageEnabled && _podService != null) {
await _podService!.syncWithPod();
}
}