periodic method

WaitChainBuilder periodic(
  1. double time,
  2. PeriodicCallback onTick
)

Implementation

WaitChainBuilder periodic(double time, PeriodicCallback onTick) {
  _chain.add(_ChainData.periodic(time, onTick));
  return this;
}