SyncConfig constructor

const SyncConfig({
  1. int retryCount = 3,
  2. Duration retryDelay = const Duration(seconds: 2),
  3. bool enableLogs = true,
})

Implementation

const SyncConfig({
  this.retryCount = 3,
  this.retryDelay = const Duration(seconds: 2),
  this.enableLogs = true,
});