syncWithPod method

Future<void> syncWithPod()

Syncs data with POD if POD storage is enabled.

Implementation

Future<void> syncWithPod() async {
  if (_isPodStorageEnabled && _podService != null) {
    await _podService!.syncWithPod();
  }
}