synchronize method

void synchronize()

Implementation

void synchronize() {
  if (!isSynchronized && (_syncTimer == null || !_syncTimer!.isActive)) {
    startSynchronizationTimer(); // Start the synchronization timer to execute queued tasks.
  }
}