PartialConnectionOptions constructor

PartialConnectionOptions(
  1. {int? attempts,
  2. int nextInterval(
    1. int previousInterval
    )?,
  3. int? interval}
)

constructor.

Implementation

PartialConnectionOptions({
  this.attempts,
  this.nextInterval,
  this.interval,
}) : assert(interval == null || nextInterval == null);