ReconnectPolicy constructor

const ReconnectPolicy({
  1. bool autoReconnect = true,
  2. int initialDelay = 10000,
  3. int randomness = 10000,
  4. double multiplier = 1.5,
  5. int maxDelay = 60000,
})

Implementation

const ReconnectPolicy({
  this.autoReconnect = true,
  this.initialDelay = 10000,
  this.randomness = 10000,
  this.multiplier = 1.5,
  this.maxDelay = 60000,
});