DoUntil constructor

DoUntil(
  1. Do<Online> doit,
  2. Check<Online> check, {
  3. Duration? delay,
  4. int retry = 0,
  5. OnlineAction? before,
  6. OnlineAction? after,
})

Implementation

DoUntil(this.doit, this.check,
    {this.delay, this.retry = 0, this.before, this.after});