setAutoSyncInterval method

void setAutoSyncInterval(
  1. Duration interval
)

Sets the auto-sync interval.

interval - The interval between auto-sync operations

Implementation

void setAutoSyncInterval(Duration interval) {
  _ensureInitialized();
  _syncEngine.setAutoSyncInterval(interval);
}